diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-02-07 05:29:42 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-02-07 05:29:42 +0000 |
commit | fac10d7c59f7db0facd5fb94de273310b9ec86e6 (patch) | |
tree | dccf8f905fc5807239883da9fca6597037d487fc /busybox.def.h | |
parent | 50bc101b7d6e847a9a0621ca3eb28c7117d095e5 (diff) |
A few minor updates. ;-)
Seriously though, read the Changelog for busybox 0.42,
which this is about to become...
-Erik
Diffstat (limited to 'busybox.def.h')
-rw-r--r-- | busybox.def.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/busybox.def.h b/busybox.def.h index fa192205a..306c87762 100644 --- a/busybox.def.h +++ b/busybox.def.h @@ -95,11 +95,6 @@ // // // -// Don't turn BB_UTILITY off. It contains support code -// that compiles to 0 if everything else if turned off. -#define BB_UTILITY -// -// // // This is where feature definitions go. Generally speaking, // turning this stuff off makes things a bit smaller (and less @@ -132,7 +127,7 @@ #define BB_FEATURE_USE_INITTAB // //Enable init being called as /linuxrc -#define BB_FEATURE_LINUXRC +//#define BB_FEATURE_LINUXRC // // //Simple tail implementation (2k vs 6k for the full one). Still @@ -142,11 +137,20 @@ // Enable support for loop devices in mount #define BB_FEATURE_MOUNT_LOOP // +// Enable support for a real /etc/mtab file instead of /proc/mounts +#ifdef BB_MOUNT +//#define BB_MTAB +#endif +// +// +// Enable support for remounting filesystems +#define BB_FEATURE_REMOUNT +// // Enable support for creation of tar files. //#define BB_FEATURE_TAR_CREATE // // Allow init to permenently chroot, and umount the old root fs -// just like an initrd does. Requires a kernel patch by Werner Almesberger. +// just like an initrd does. Requires a kernel patch by Werner Almesberger. // ftp://icaftp.epfl.ch/pub/people/almesber/misc/umount-root-*.tar.gz #ifdef BB_MOUNT #define BB_FEATURE_INIT_CHROOT |