summaryrefslogtreecommitdiff
path: root/src/sys/os/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-09-17 01:44:55 -0400
committerIan Moffett <ian@osmora.org>2025-09-17 01:44:55 -0400
commit7f71ee15dfca8cd3e6ba4309ed768015ffbe8644 (patch)
treed147dd9ebfe80c606f16fc35e9cdf4d22b1cd33b /src/sys/os/Makefile
parentb6983be0368bb39e3a8cbd919235b14504f1d995 (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/os/Makefile')
-rw-r--r--src/sys/os/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/os/Makefile b/src/sys/os/Makefile
index 158eab4..693c008 100644
--- a/src/sys/os/Makefile
+++ b/src/sys/os/Makefile
@@ -4,7 +4,7 @@ include ../conf/sys.mk
override PROMPT := printf "%s\t\t%s\n"
TARGET_LIB = ../target/libkern.a
-CFLAGS = -I../include/ -I../include/lib/ -I../target/header/ $(MI_CFLAGS) -O0
+CFLAGS = -I../include/ -I../include/lib/ -I../target/header/ $(MI_CFLAGS) -O0 $(CONF)
CFILES = $(shell find . -name "*.c")
CFILES += $(shell find ../vm -name "*.c")
CFILES += $(shell find ../lib -name "*.c")