From 7f71ee15dfca8cd3e6ba4309ed768015ffbe8644 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 17 Sep 2025 01:44:55 -0400 Subject: 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 --- src/tools/kconf/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/tools/kconf/Makefile (limited to 'src/tools/kconf/Makefile') diff --git a/src/tools/kconf/Makefile b/src/tools/kconf/Makefile new file mode 100644 index 0000000..533a6ac --- /dev/null +++ b/src/tools/kconf/Makefile @@ -0,0 +1,9 @@ +kconf: + bison -d grammar.y + flex scan.l + gcc lex.yy.c grammar.tab.c -lfl -o kconf + +clean: + rm grammar.tab.* + rm lex.yy.c + rm kconf -- cgit v1.2.3