5187bc5060477878286bfe00d2fb036d72d1ecaf
[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_DIRNAME
22 #define BB_DMESG
23 #define BB_DUTMP
24 #define BB_DU
25 #define BB_ECHO
26 #define BB_FBSET
27 #define BB_FDFLUSH
28 #define BB_FIND
29 #define BB_FREE
30 #define BB_FREERAMDISK
31 #define BB_FSCK_MINIX
32 #define BB_GREP
33 #define BB_GUNZIP
34 #define BB_GZIP
35 #define BB_HALT
36 #define BB_HEAD
37 #define BB_HOSTID
38 #define BB_HOSTNAME
39 #define BB_ID
40 #define BB_INIT
41 // Don't bother turning BB_INSMOD on.  It doesn't work yet.
42 //#define BB_INSMOD
43 #define BB_KILL
44 #define BB_KILLALL
45 #define BB_KLOGD
46 #define BB_LENGTH
47 #define BB_LN
48 #define BB_LOADACM
49 #define BB_LOADFONT
50 #define BB_LOADKMAP
51 #define BB_LOGGER
52 #define BB_LOGNAME
53 #define BB_LS
54 #define BB_LSMOD
55 #define BB_MAKEDEVS
56 #define BB_MATH
57 #define BB_MKDIR
58 #define BB_MKFIFO
59 #define BB_MKFS_MINIX
60 #define BB_MKNOD
61 #define BB_MKSWAP
62 #define BB_MKTEMP
63 #define BB_MNC
64 #define BB_MORE
65 #define BB_MOUNT
66 #define BB_MT
67 #define BB_NSLOOKUP
68 #define BB_PING
69 #define BB_POWEROFF
70 #define BB_PRINTF
71 #define BB_PS
72 #define BB_PWD
73 #define BB_REBOOT
74 #define BB_RM
75 #define BB_RMDIR
76 #define BB_RMMOD
77 #define BB_SED
78 #define BB_SETKEYCODES
79 #define BB_SFDISK
80 #define BB_SH
81 #define BB_SLEEP
82 #define BB_SORT
83 #define BB_SWAPONOFF
84 #define BB_SYNC
85 #define BB_SYSLOGD
86 #define BB_TAIL
87 #define BB_TAR
88 #define BB_TEE
89 #define BB_TEST
90 // Don't bother turning BB_TELNET on.  It doesn't work properly yet.
91 //#define BB_TELNET
92 #define BB_TOUCH
93 #define BB_TR
94 #define BB_TRUE_FALSE
95 #define BB_TTY
96 #define BB_UPTIME
97 #define BB_USLEEP
98 #define BB_WC
99 #define BB_WHOAMI
100 #define BB_UMOUNT
101 #define BB_UNIQ
102 #define BB_UNAME
103 #define BB_UPDATE
104 #define BB_YES
105 // End of Applications List
106 //
107 //
108 //
109 // ---------------------------------------------------------
110 // This is where feature definitions go.  Generally speaking,
111 // turning this stuff off makes things a bit smaller (and less 
112 // pretty/useful).
113 //
114 //
115 // Turn this on to use Erik's very cool devps, devmtab, 
116 // etc kernel drivers, thereby eliminating the need for 
117 // the /proc filesystem and thereby saving lots and lots 
118 // memory for more important things.
119 // You can't use this and USE_PROCFS at the same time...
120 // (BTW, I emailed Linus and this patch will not be going into the stock kernel)
121 //#define BB_FEATURE_USE_DEVPS_PATCH
122 //
123 // enable features that use the /proc filesystem (apps that 
124 // break without this will tell you on compile)...
125 // You can't use this and BB_FEATURE_USE_DEVPS_PATCH 
126 // at the same time...
127 #define BB_FEATURE_USE_PROCFS
128 //
129 // Enable full regular expressions.  This adds about 
130 // 4k.  When this is off, things that would normally
131 // use regualr expressions (like grep) will just use
132 // normal strings.
133 #define BB_FEATURE_FULL_REGULAR_EXPRESSIONS
134 //
135 // This compiles out everything but the most 
136 // trivial --help usage information (i.e. reduces binary size)
137 //#define BB_FEATURE_TRIVIAL_HELP
138 //
139 // Use termios to manipulate the screen ('more' is prettier with this on)
140 //#define BB_FEATURE_USE_TERMIOS
141 //
142 // calculate terminal & column widths (for more and ls)
143 #define BB_FEATURE_AUTOWIDTH
144 //
145 // show username/groupnames (bypasses libc6 NSS) for ls
146 #define BB_FEATURE_LS_USERNAME
147 //
148 // show file timestamps in ls
149 #define BB_FEATURE_LS_TIMESTAMPS
150 //
151 // enable ls -p and -F
152 #define BB_FEATURE_LS_FILETYPES
153 //
154 // Change ping implementation -- simplified, featureless, but really small.
155 //#define BB_SIMPLE_PING
156 //
157 // Make init use a simplified /etc/inittab file (recommended).
158 #define BB_FEATURE_USE_INITTAB
159 //
160 //Enable init being called as /linuxrc
161 //#define BB_FEATURE_LINUXRC
162 //
163 //Have init enable core dumping for child processes (for debugging only) 
164 //#define BB_FEATURE_INIT_COREDUMPS
165 //
166 // Allow init to permenently chroot, and umount the old root fs
167 // just like an initrd does.  Requires a kernel patch by Werner Almesberger. 
168 // ftp://icaftp.epfl.ch/pub/people/almesber/misc/umount-root-*.tar.gz
169 //#define BB_FEATURE_INIT_CHROOT
170 //
171 //Make sure nothing is printed to the console on boot
172 #define BB_FEATURE_EXTRA_QUIET
173 //
174 //Simple tail implementation (2k vs 6k for the full one).  Still
175 //provides 'tail -f' support -- but for only one file at a time.
176 #define BB_FEATURE_SIMPLE_TAIL
177 //
178 // Enable support for loop devices in mount
179 #define BB_FEATURE_MOUNT_LOOP
180 //
181 // Enable support for a real /etc/mtab file instead of /proc/mounts
182 //#define BB_FEATURE_MOUNT_MTAB_SUPPORT
183 //
184 // Enable support for remounting filesystems
185 #define BB_FEATURE_REMOUNT
186 //
187 // Enable support for mounting remote NFS volumes
188 //#define BB_FEATURE_NFSMOUNT
189 //
190 // Enable support for creation of tar files.
191 #define BB_FEATURE_TAR_CREATE
192 //
193 // Enable support for "--exclude" for excluding files
194 #define BB_FEATURE_TAR_EXCLUDE
195 //
196 //// Enable reverse sort
197 #define BB_FEATURE_SORT_REVERSE
198 //
199 // Enable command line editing in the shell
200 //#define BB_FEATURE_SH_COMMAND_EDITING
201 //
202 // Enable tab completion in the shell (not yet 
203 // working very well -- so don't turn this on)
204 //#define BB_FEATURE_SH_TAB_COMPLETION
205 //
206 //Turn on extra fbset options
207 //#define BB_FEATURE_FBSET_FANCY
208 //
209 //
210 // End of Features List
211 //
212 //
213 //
214 //
215 //
216 //
217 //---------------------------------------------------
218 // Nothing beyond this point should ever be touched by 
219 // mere mortals so leave this stuff alone.
220 //
221 #ifdef BB_FEATURE_MOUNT_MTAB_SUPPORT
222 #define BB_MTAB
223 #endif
224 //
225 #if defined BB_FEATURE_FULL_REGULAR_EXPRESSIONS && (defined BB_SED || defined BB_GREP )
226 #define BB_REGEXP
227 #endif
228 //
229 #if defined BB_FEATURE_SH_COMMAND_EDITING && defined BB_SH
230 #define BB_CMDEDIT
231 #endif
232 //
233 #ifdef BB_KILLALL
234 #ifndef BB_KILL
235 #define BB_KILL
236 #endif
237 #endif
238 //
239 #ifdef BB_INIT
240 #ifndef BB_FEATURE_REMOUNT
241 #define BB_FEATURE_REMOUNT
242 #endif
243 #endif
244 //
245 #ifdef BB_FEATURE_LINUXRC
246 #ifndef BB_INIT
247 #define BB_INIT
248 #define BB_LINUXRC
249 #endif
250 #endif
251 //
252 #ifdef BB_GZIP
253 #ifndef BB_GUNZIP
254 #define BB_GUNZIP
255 #endif
256 #endif
257 //
258 #if defined BB_MOUNT && defined BB_FEATURE_NFSMOUNT
259 #define BB_NFSMOUNT
260 #endif
261 //