diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-24 23:34:48 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-24 23:34:48 +0000 |
commit | f5d5e77321ad32b3952dcdf21d14fd0ef3d4c1a9 (patch) | |
tree | bc91a3dbedbdfc52a5ade52815d241d2f1100082 /Config.h | |
parent | 26439a2991f81b52c93b1e81d16f328f359a6611 (diff) | |
download | busybox-w32-f5d5e77321ad32b3952dcdf21d14fd0ef3d4c1a9.tar.gz busybox-w32-f5d5e77321ad32b3952dcdf21d14fd0ef3d4c1a9.tar.bz2 busybox-w32-f5d5e77321ad32b3952dcdf21d14fd0ef3d4c1a9.zip |
more bugs fixed -- found doing regression testing
-Erik
Diffstat (limited to 'Config.h')
-rw-r--r-- | Config.h | 30 |
1 files changed, 14 insertions, 16 deletions
@@ -258,17 +258,11 @@ | |||
258 | //Turn on fbset readmode support | 258 | //Turn on fbset readmode support |
259 | //#define BB_FEATURE_FBSET_READMODE | 259 | //#define BB_FEATURE_FBSET_READMODE |
260 | // | 260 | // |
261 | // You must enable one or both of these features | 261 | // Support insmod/lsmod/rmmod for post 2.1 kernels |
262 | // Support installing modules from pre 2.1 kernels | 262 | //#define BB_FEATURE_NEW_MODULE_INTERFACE |
263 | //#define BB_FEATURE_INSMOD_OLD_KERNEL | 263 | // |
264 | // Support installing modules from kernel versions after 2.1.18 | 264 | // Support insmod/lsmod/rmmod for pre 2.1 kernels |
265 | #define BB_FEATURE_INSMOD_NEW_KERNEL | 265 | //#define BB_FEATURE_OLD_MODULE_INTERFACE |
266 | // | ||
267 | // You must enable one or both of these features | ||
268 | // Support modules status from pre 2.1 kernels | ||
269 | //#define BB_FEATURE_LSMOD_OLD_KERNEL | ||
270 | // Support modules status from kernel versions after 2.1.18 | ||
271 | #define BB_FEATURE_LSMOD_NEW_KERNEL | ||
272 | // | 266 | // |
273 | // Support module version checking | 267 | // Support module version checking |
274 | //#define BB_FEATURE_INSMOD_VERSION_CHECKING | 268 | //#define BB_FEATURE_INSMOD_VERSION_CHECKING |
@@ -308,7 +302,9 @@ | |||
308 | #ifdef BB_FEATURE_MOUNT_MTAB_SUPPORT | 302 | #ifdef BB_FEATURE_MOUNT_MTAB_SUPPORT |
309 | #define BB_MTAB | 303 | #define BB_MTAB |
310 | #endif | 304 | #endif |
311 | #endif | 305 | #else |
306 | #undef BB_MTAB | ||
307 | #endif | ||
312 | // | 308 | // |
313 | #if defined BB_FEATURE_SH_COMMAND_EDITING && defined BB_SH | 309 | #if defined BB_FEATURE_SH_COMMAND_EDITING && defined BB_SH |
314 | #define BB_CMDEDIT | 310 | #define BB_CMDEDIT |
@@ -320,12 +316,14 @@ | |||
320 | #endif | 316 | #endif |
321 | #endif | 317 | #endif |
322 | // | 318 | // |
323 | #ifdef BB_FEATURE_LINUXRC | 319 | #if defined BB_FEATURE_LINUXRC || defined BB_LINUXRC |
324 | #ifndef BB_INIT | 320 | #ifndef BB_INIT |
325 | #define BB_INIT | 321 | #define BB_INIT |
326 | #endif | 322 | #endif |
323 | #ifndef BB_LINUXRC | ||
327 | #define BB_LINUXRC | 324 | #define BB_LINUXRC |
328 | #endif | 325 | #endif |
326 | #endif | ||
329 | // | 327 | // |
330 | #ifdef BB_GZIP | 328 | #ifdef BB_GZIP |
331 | #ifndef BB_GUNZIP | 329 | #ifndef BB_GUNZIP |
@@ -369,8 +367,8 @@ | |||
369 | #endif | 367 | #endif |
370 | #endif | 368 | #endif |
371 | // | 369 | // |
372 | #if defined BB_INSMOD | 370 | #if defined BB_INSMOD || defined BB_LSMOD |
373 | #ifndef BB_FEATURE_INSMOD_OLD_KERNEL | 371 | #ifndef BB_FEATURE_NEW_MODULE_INTERFACE |
374 | #define BB_FEATURE_INSMOD_NEW_KERNEL | 372 | #define BB_FEATURE_NEW_MODULE_INTERFACE |
375 | #endif | 373 | #endif |
376 | #endif | 374 | #endif |