blob: 325e6ab32a196e2d87079907c8d185714c8f6249 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# bin/Kconfig
menu "Command-line tools"
config BIN_CLEAR
bool "clear"
default y
depends on LIB_LIBC
help
Build/Add the 'clear' command to clear the terminal screen.
config BIN_ECHO
bool "echo"
default y
depends on LIB_LIBC
help
Build/Add the 'echo' command to display a line of text.
config BIN_FALSE
bool "false"
default y
help
Build/Add the 'false' command which returns a non-zero exit status.
config BIN_FREE
bool "free"
default y
depends on LIB_LIBC
help
Build/Add the 'free' command to display memory usage.
config BIN_GZIP
bool "gzip"
default n
depends on LIB_LIBC && LIB_LIBM
help
Build/Add the 'gzip' command to compress files using the gzip algorithm.
config BIN_SYNC
bool "sync"
default y
help
Build/Add the 'sync' command to flush filesystem buffers.
config BIN_TRUE
bool "true"
default y
help
Build/Add the 'true' command which returns a zero exit status.
config BIN_NOHUP
bool "nohup"
default y
depends on LIB_LIBC
help
Build/Add the 'nohup' command which returns a zero exit status.
config BIN_UNLINK
bool "unlink"
default y
depends on LIB_LIBC
help
Build/Add the 'unlink' command which returns a zero exit status.
endmenu
|