diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-25 22:45:19 +0100 |
|---|---|---|
| committer | Kacper Fiedorowicz <kf@efab.pl> | 2025-12-25 23:09:24 +0100 |
| commit | 21d28f71b20c1d58e7abb039f12d2c61aadd3f0f (patch) | |
| tree | 17d368252543872600c8eefb6f0b5410f7edced2 /lib/Kconfig | |
| parent | e691a7ff9a4cc0581e9e7f504125c9ecba176221 (diff) | |
Added more kconfig options
Diffstat (limited to 'lib/Kconfig')
| -rw-r--r-- | lib/Kconfig | 24 |
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 |
