diff options
author | Erik Andersen | 2000-03-07 07:41:42 +0000 |
---|---|---|
committer | Erik Andersen | 2000-03-07 07:41:42 +0000 |
commit | 246cc6dddd3df2164e8a925ebd8e9a7bba379253 (patch) | |
tree | 0b9f317c6b6fdebad4f90fbfde5565e195076ea4 /busybox.def.h | |
parent | e916d24805b4a191bc08d2ee31c9247a30f9bc1e (diff) | |
download | busybox-246cc6dddd3df2164e8a925ebd8e9a7bba379253.zip busybox-246cc6dddd3df2164e8a925ebd8e9a7bba379253.tar.gz |
Wrote killall.
Adjusted mount, ps, utility.c, etc to handle my nifty new kernel
patches the allow busybox to run perfectly without /proc.
-Erik
Diffstat (limited to 'busybox.def.h')
-rw-r--r-- | busybox.def.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/busybox.def.h b/busybox.def.h index 306133b..da34055 100644 --- a/busybox.def.h +++ b/busybox.def.h @@ -39,6 +39,7 @@ // Don't turn BB_INSMOD on. It doesn't work. //#define BB_INSMOD #define BB_KILL +#define BB_KILLALL #define BB_KLOGD //#define BB_LENGTH #define BB_LN @@ -106,8 +107,17 @@ // pretty/useful). // // +// Turn this on to use Erik's very cool devps, devmtab, +// etc. kernel drivers, thereby eliminating the need for +// the /proc filesystem and thereby saving lots and lots +// memory for more important things. +// You can't use this and USE_PROCFS at the same time... +//#define BB_FEATURE_USE_DEVPS_N_DEVMTAB +// +// // enable features that use the /proc filesystem (apps that // break without this will tell you on compile)... +// You can't use this and DEVPS_N_DEVMTAB at the same time... #define BB_FEATURE_USE_PROCFS // // Use termios to manipulate the screen ('more' is prettier with this on) @@ -161,6 +171,6 @@ // 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 +//#define BB_FEATURE_INIT_CHROOT #endif // |