summaryrefslogtreecommitdiff
path: root/bin/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 /bin/Kconfig
parente691a7ff9a4cc0581e9e7f504125c9ecba176221 (diff)
Added more kconfig options
Diffstat (limited to 'bin/Kconfig')
-rw-r--r--bin/Kconfig21
1 files changed, 13 insertions, 8 deletions
diff --git a/bin/Kconfig b/bin/Kconfig
index 0dcab22e..67e4e63d 100644
--- a/bin/Kconfig
+++ b/bin/Kconfig
@@ -1,46 +1,51 @@
# bin/Kconfig
-menu "Binary Utilities Configuration"
+menu "Command-line tools"
+
config BIN_CLEAR
bool "clear"
default y
+ depends on LIB_LIBC
help
- Enable the 'clear' command to clear the terminal screen.
+ Build/Add the 'clear' command to clear the terminal screen.
config BIN_ECHO
bool "echo"
default y
+ depends on LIB_LIBC
help
- Enable the 'echo' command to display a line of text.
+ Build/Add the 'echo' command to display a line of text.
config BIN_FALSE
bool "false"
default y
help
- Enable the 'false' command which returns a non-zero exit status.
+ Build/Add the 'false' command which returns a non-zero exit status.
config BIN_FREE
bool "free"
default y
+ depends on LIB_LIBC
help
- Enable the 'free' command to display memory usage.
+ Build/Add the 'free' command to display memory usage.
config BIN_GZIP
bool "gzip"
default n
+ depends on LIB_LIBC && LIB_LIBM
help
- Enable the 'gzip' command to compress files using the gzip algorithm.
+ Build/Add the 'gzip' command to compress files using the gzip algorithm.
config BIN_SYNC
bool "sync"
default y
help
- Enable the 'sync' command to flush filesystem buffers.
+ Build/Add the 'sync' command to flush filesystem buffers.
config BIN_TRUE
bool "true"
default y
help
- Enable the 'true' command which returns a zero exit status.
+ Build/Add the 'true' command which returns a zero exit status.
endmenu