summaryrefslogtreecommitdiff
path: root/lib/Kconfig
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-25 22:45:19 +0100
committerKacper Fiedorowicz <kf@efab.pl>2025-12-25 23:09:24 +0100
commit21d28f71b20c1d58e7abb039f12d2c61aadd3f0f (patch)
tree17d368252543872600c8eefb6f0b5410f7edced2 /lib/Kconfig
parente691a7ff9a4cc0581e9e7f504125c9ecba176221 (diff)
Added more kconfig options
Diffstat (limited to 'lib/Kconfig')
-rw-r--r--lib/Kconfig24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig
new file mode 100644
index 00000000..d5854b78
--- /dev/null
+++ b/lib/Kconfig
@@ -0,0 +1,24 @@
+# lib/Kconfig
+
+menu "Libraries"
+
+config LIB_LIBC
+ tristate "libc"
+ default m
+ help
+ Build/Add the 'libc' library.
+
+config LIB_LIBC_HEADERS
+ bool "libc headers"
+ default n
+ help
+ Add the 'libc' library headers.
+
+
+config LIB_LIBM
+ tristate "libm"
+ default n
+ help
+ Build/Add the 'libm' library.
+
+endmenu