diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-17 01:44:55 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-17 01:44:55 -0400 |
commit | 7f71ee15dfca8cd3e6ba4309ed768015ffbe8644 (patch) | |
tree | d147dd9ebfe80c606f16fc35e9cdf4d22b1cd33b /src/sys/arch | |
parent | b6983be0368bb39e3a8cbd919235b14504f1d995 (diff) |
kern: Make memmap dump configurable via kconf
Use the OSMORA kernel configuration framework to add options for L5Lunos
to parse during early startup.
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/arch')
-rw-r--r-- | src/sys/arch/amd64/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/arch/amd64/Makefile b/src/sys/arch/amd64/Makefile index f4f4f48..1eae962 100644 --- a/src/sys/arch/amd64/Makefile +++ b/src/sys/arch/amd64/Makefile @@ -4,7 +4,7 @@ override PROMPT := printf "%s\t\t%s\n" TARGET_BIN = ../../l5 TARGET_INC = -I../../target/header/ -CFLAGS = -I../../include/ -I../../include/lib/ $(TARGET_INC) $(MI_CFLAGS) $(MD_CFLAGS) +CFLAGS = -I../../include/ -I../../include/lib/ $(TARGET_INC) $(MI_CFLAGS) $(MD_CFLAGS) $(CONF) CFILES = $(shell find . -name "*.c") ASMFILES = $(shell find . -name "*.S") |