summaryrefslogtreecommitdiff
path: root/bin/Kconfig
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-14 18:10:13 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-14 19:28:34 +0100
commit872cf03f26c2801ae6c3008ce5fa0d7856f5f85d (patch)
tree94809812b71ee286eb5b74c70e4d08fc4c8dc057 /bin/Kconfig
parentec769a83bde09c76bd6ad9ee7f391036dba5cd97 (diff)
libc: implement err/warn functions
Diffstat (limited to 'bin/Kconfig')
-rw-r--r--bin/Kconfig46
1 files changed, 46 insertions, 0 deletions
diff --git a/bin/Kconfig b/bin/Kconfig
new file mode 100644
index 00000000..0dcab22e
--- /dev/null
+++ b/bin/Kconfig
@@ -0,0 +1,46 @@
+# bin/Kconfig
+
+menu "Binary Utilities Configuration"
+config BIN_CLEAR
+ bool "clear"
+ default y
+ help
+ Enable the 'clear' command to clear the terminal screen.
+
+config BIN_ECHO
+ bool "echo"
+ default y
+ help
+ Enable 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.
+
+config BIN_FREE
+ bool "free"
+ default y
+ help
+ Enable the 'free' command to display memory usage.
+
+config BIN_GZIP
+ bool "gzip"
+ default n
+ help
+ Enable 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.
+
+config BIN_TRUE
+ bool "true"
+ default y
+ help
+ Enable the 'true' command which returns a zero exit status.
+
+endmenu