- make-uefi-iso.sh: UEFI ISO image builder - test_boot.S, test_boot.ld: test boot assembly and linker script - eim_config.toml: EIM (External Interface Module) configuration - edk2-ovmf RPM for UEFI firmware - GAP_ANALYSIS_PIKEOS_PARITY.md: PikeOS parity gap analysis
18 lines
373 B
C
18 lines
373 B
C
/*
|
|
* UniversalisOS Microkernel — Tier 1 Configuration
|
|
* Cortex-M4/M7 with MPU. Included AFTER uos_config.h.
|
|
* Overrides only tier-specific settings.
|
|
*/
|
|
#ifndef UOS_CONFIG_TIER1_H
|
|
#define UOS_CONFIG_TIER1_H
|
|
|
|
/* Override tier */
|
|
#undef UOS_TIER
|
|
#define UOS_TIER 1
|
|
|
|
/* MPU */
|
|
#undef UOS_HAS_MPU
|
|
#define UOS_HAS_MPU 1
|
|
|
|
|
|
#endif /* UOS_CONFIG_TIER1_H */
|