universalisos/microkernel/include/uos_config_tier1.h
Fábio Coutada 62e8454f91 build: add UEFI ISO builder, test boot scripts, EIM config
- 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
2026-07-15 15:33:07 +01:00

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 */