3407b2cc0c79468c250fc0a46075b472df0eeece
[oweals/busybox.git] / busybox.def.h
1 /* vi: set sw=4 ts=4: */
2 // This file defines the feature set to be compiled into busybox.
3 // When you turn things off here, they won't be compiled in at all.
4 //
5 //// This file is parsed by sed. You MUST use single line comments.
6 //   i.e.  //#define BB_BLAH
7 //
8 //
9 // BusyBox Applications
10 //#define BB_BASENAME
11 #define BB_CAT
12 #define BB_CHMOD_CHOWN_CHGRP
13 #define BB_CHROOT
14 #define BB_CHVT
15 #define BB_CLEAR
16 #define BB_CP_MV
17 #define BB_DATE
18 #define BB_DD
19 #define BB_DEALLOCVT
20 #define BB_DF
21 #define BB_DMESG
22 //#define BB_DUTMP
23 #define BB_DU
24 #define BB_FBSET
25 //#define BB_FDFLUSH
26 #define BB_FIND
27 #define BB_FREE
28 #define BB_FREERAMDISK
29 #define BB_FSCK_MINIX
30 #define BB_GREP
31 #define BB_GUNZIP
32 #define BB_GZIP
33 //#define BB_HALT
34 #define BB_HEAD
35 //#define BB_HOSTID
36 #define BB_HOSTNAME
37 #define BB_INIT
38 // Don't turn BB_INSMOD on.  It doesn't work.
39 //#define BB_INSMOD
40 #define BB_KILL
41 #define BB_KLOGD
42 //#define BB_LENGTH
43 #define BB_LN
44 //#define BB_LOADACM
45 //#define BB_LOADFONT
46 //#define BB_LOADKMAP
47 //#define BB_LOGGER
48 #define BB_LOGNAME
49 #define BB_LS
50 #define BB_LSMOD
51 //#define BB_MAKEDEVS
52 #define BB_MKFS_MINIX
53 //#define BB_MATH
54 #define BB_MKDIR
55 //#define BB_MKFIFO
56 #define BB_MKNOD
57 #define BB_MKSWAP
58 //#define BB_MNC
59 #define BB_MORE
60 #define BB_MOUNT
61 #define BB_NFSMOUNT
62 //#define BB_MT
63 #define BB_NSLOOKUP
64 #define BB_PING
65 #define BB_POWEROFF
66 //#define BB_PRINTF
67 #define BB_PS
68 #define BB_PWD
69 #define BB_REBOOT
70 #define BB_REGEXP
71 #define BB_RM
72 #define BB_RMDIR
73 //#define BB_RMMOD
74 #define BB_SED
75 //#define BB_SFDISK
76 #define BB_SLEEP
77 #define BB_SORT
78 #define BB_SWAPONOFF
79 #define BB_SYNC
80 #define BB_SYSLOGD
81 #define BB_TAIL
82 #define BB_TAR
83 #define BB_TEE
84 // Don't turn BB_TELNET on.  It doesn't work.
85 #define BB_TELNET
86 #define BB_TOUCH
87 #define BB_TRUE_FALSE
88 #define BB_TTY
89 #define BB_WC
90 #define BB_WHOAMI
91 #define BB_UMOUNT
92 #define BB_UNIQ
93 #define BB_UNAME
94 #define BB_UPDATE
95 #define BB_YES
96 // End of Applications List
97 //
98 //
99 //
100 //
101 // This is where feature definitions go.  Generally speaking,
102 // turning this stuff off makes things a bit smaller (and less 
103 // pretty/useful).
104 //
105 //
106 // enable features that use the /proc filesystem (apps that 
107 // break without this will tell you on compile)...
108 #define BB_FEATURE_USE_PROCFS
109 //
110 // Use termios to manipulate the screen ('more' is prettier with this on)
111 #define BB_FEATURE_USE_TERMIOS
112 //
113 // calculate terminal & column widths (for more and ls)
114 #define BB_FEATURE_AUTOWIDTH
115 //
116 // show username/groupnames (bypasses libc6 NSS) for ls
117 #define BB_FEATURE_LS_USERNAME  
118 //
119 // show file timestamps in ls
120 #define BB_FEATURE_LS_TIMESTAMPS
121 //
122 // enable ls -p and -F
123 #define BB_FEATURE_LS_FILETYPES 
124 //
125 // Change ping implementation -- simplified, featureless, but really small.
126 //#define BB_SIMPLE_PING
127 ////
128 // Make init use a simplified /etc/inittab file (recommended).
129 #define BB_FEATURE_USE_INITTAB
130 //
131 //Enable init being called as /linuxrc
132 //#define BB_FEATURE_LINUXRC
133 //
134 //
135 //Simple tail implementation (2k vs 6k for the full one).  Still
136 //provides 'tail -f' support -- but for only one file at a time.
137 #define BB_FEATURE_SIMPLE_TAIL
138 //
139 // Enable support for loop devices in mount
140 #define BB_FEATURE_MOUNT_LOOP
141 //
142 // Enable support for a real /etc/mtab file instead of /proc/mounts
143 #ifdef BB_MOUNT
144 //#define BB_MTAB
145 #endif
146 //
147 //
148 // Enable support for remounting filesystems
149 #define BB_FEATURE_REMOUNT
150 //
151 // Enable support for creation of tar files.
152 //#define BB_FEATURE_TAR_CREATE
153 //
154 //// Enable reverse sort
155 //#define BB_FEATURE_SORT_REVERSE
156 //
157 // Allow init to permenently chroot, and umount the old root fs
158 // just like an initrd does.  Requires a kernel patch by Werner Almesberger. 
159 // ftp://icaftp.epfl.ch/pub/people/almesber/misc/umount-root-*.tar.gz
160 #ifdef BB_MOUNT
161 #define BB_FEATURE_INIT_CHROOT
162 #endif
163 //