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/Makefile | |
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/Makefile')
-rw-r--r-- | src/sys/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/Makefile b/src/sys/Makefile index 561da50..78c3762 100644 --- a/src/sys/Makefile +++ b/src/sys/Makefile @@ -10,11 +10,11 @@ all: os lib md .PHONY: os os: - cd os; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR) + cd os; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR) CONF=$(CONF) .PHONY: md md: - cd $(TARGETDIR); make CC=$(CC) LD=$(LD) AS=$(AS) + cd $(TARGETDIR); make CC=$(CC) LD=$(LD) AS=$(AS) CONF=$(CONF) .PHONY: clean clean: |