diff options
Diffstat (limited to 'busybox.def.h')
-rw-r--r-- | busybox.def.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/busybox.def.h b/busybox.def.h index 53229ce1b..7b6d4e4ef 100644 --- a/busybox.def.h +++ b/busybox.def.h | |||
@@ -122,6 +122,12 @@ | |||
122 | // at the same time... | 122 | // at the same time... |
123 | #define BB_FEATURE_USE_PROCFS | 123 | #define BB_FEATURE_USE_PROCFS |
124 | // | 124 | // |
125 | // Enable full regular expressions. This adds about | ||
126 | // 4k. When this is off, things that would normally | ||
127 | // use regualr expressions (like grep) will just use | ||
128 | // normal strings. | ||
129 | #define BB_FEATURE_FULL_REGULAR_EXPRESSIONS | ||
130 | // | ||
125 | // Use termios to manipulate the screen ('more' is prettier with this on) | 131 | // Use termios to manipulate the screen ('more' is prettier with this on) |
126 | #define BB_FEATURE_USE_TERMIOS | 132 | #define BB_FEATURE_USE_TERMIOS |
127 | // | 133 | // |
@@ -146,6 +152,17 @@ | |||
146 | //Enable init being called as /linuxrc | 152 | //Enable init being called as /linuxrc |
147 | //#define BB_FEATURE_LINUXRC | 153 | //#define BB_FEATURE_LINUXRC |
148 | // | 154 | // |
155 | //Have init enable core dumping for child processed (for debugging only) | ||
156 | //#define BB_FEATURE_INIT_COREDUMPS | ||
157 | // | ||
158 | // Allow init to permenently chroot, and umount the old root fs | ||
159 | // just like an initrd does. Requires a kernel patch by Werner Almesberger. | ||
160 | // ftp://icaftp.epfl.ch/pub/people/almesber/misc/umount-root-*.tar.gz | ||
161 | //#define BB_FEATURE_INIT_CHROOT | ||
162 | // | ||
163 | //Make sure nothing is printed to the console on boot | ||
164 | #define BB_FEATURE_EXTRA_QUIET | ||
165 | // | ||
149 | //Simple tail implementation (2k vs 6k for the full one). Still | 166 | //Simple tail implementation (2k vs 6k for the full one). Still |
150 | //provides 'tail -f' support -- but for only one file at a time. | 167 | //provides 'tail -f' support -- but for only one file at a time. |
151 | #define BB_FEATURE_SIMPLE_TAIL | 168 | #define BB_FEATURE_SIMPLE_TAIL |
@@ -156,7 +173,6 @@ | |||
156 | // Enable support for a real /etc/mtab file instead of /proc/mounts | 173 | // Enable support for a real /etc/mtab file instead of /proc/mounts |
157 | //#define BB_FEATURE_MOUNT_MTAB_SUPPORT | 174 | //#define BB_FEATURE_MOUNT_MTAB_SUPPORT |
158 | // | 175 | // |
159 | // | ||
160 | // Enable support for remounting filesystems | 176 | // Enable support for remounting filesystems |
161 | #define BB_FEATURE_REMOUNT | 177 | #define BB_FEATURE_REMOUNT |
162 | // | 178 | // |
@@ -166,25 +182,9 @@ | |||
166 | //// Enable reverse sort | 182 | //// Enable reverse sort |
167 | //#define BB_FEATURE_SORT_REVERSE | 183 | //#define BB_FEATURE_SORT_REVERSE |
168 | // | 184 | // |
169 | // Allow init to permenently chroot, and umount the old root fs | ||
170 | // just like an initrd does. Requires a kernel patch by Werner Almesberger. | ||
171 | // ftp://icaftp.epfl.ch/pub/people/almesber/misc/umount-root-*.tar.gz | ||
172 | //#define BB_FEATURE_INIT_CHROOT | ||
173 | // | ||
174 | //Make sure nothing is printed to the console on boot | ||
175 | #define BB_FEATURE_EXTRA_QUIET | ||
176 | // | ||
177 | // Enable full regular expressions. This adds about | ||
178 | // 4k. When this is off, things that would normally | ||
179 | // use regualr expressions (like grep) will just use | ||
180 | // normal strings. | ||
181 | #define BB_FEATURE_FULL_REGULAR_EXPRESSIONS | ||
182 | // | ||
183 | // | ||
184 | // Enable command line editing in the shell | 185 | // Enable command line editing in the shell |
185 | #define BB_FEATURE_SH_COMMAND_EDITING | 186 | #define BB_FEATURE_SH_COMMAND_EDITING |
186 | // | 187 | // |
187 | // | ||
188 | //Turn on extra fbset options | 188 | //Turn on extra fbset options |
189 | //#define BB_FEATURE_FBSET_FANCY | 189 | //#define BB_FEATURE_FBSET_FANCY |
190 | // | 190 | // |