aboutsummaryrefslogtreecommitdiff
path: root/busybox.def.h
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-03-07 07:41:42 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-03-07 07:41:42 +0000
commit7eec702b2195f2572be33045b63022ee0555fcec (patch)
tree0b9f317c6b6fdebad4f90fbfde5565e195076ea4 /busybox.def.h
parent915133b8e0f8838a046ed77fa65265473c0d8d76 (diff)
downloadbusybox-w32-7eec702b2195f2572be33045b63022ee0555fcec.tar.gz
busybox-w32-7eec702b2195f2572be33045b63022ee0555fcec.tar.bz2
busybox-w32-7eec702b2195f2572be33045b63022ee0555fcec.zip
Wrote killall.
Adjusted mount, ps, utility.c, etc to handle my nifty new kernel patches the allow busybox to run perfectly without /proc. -Erik git-svn-id: svn://busybox.net/trunk/busybox@393 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'busybox.def.h')
-rw-r--r--busybox.def.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/busybox.def.h b/busybox.def.h
index 306133ba8..da34055ee 100644
--- a/busybox.def.h
+++ b/busybox.def.h
@@ -39,6 +39,7 @@
39// Don't turn BB_INSMOD on. It doesn't work. 39// Don't turn BB_INSMOD on. It doesn't work.
40//#define BB_INSMOD 40//#define BB_INSMOD
41#define BB_KILL 41#define BB_KILL
42#define BB_KILLALL
42#define BB_KLOGD 43#define BB_KLOGD
43//#define BB_LENGTH 44//#define BB_LENGTH
44#define BB_LN 45#define BB_LN
@@ -106,8 +107,17 @@
106// pretty/useful). 107// pretty/useful).
107// 108//
108// 109//
110// Turn this on to use Erik's very cool devps, devmtab,
111// etc. kernel drivers, thereby eliminating the need for
112// the /proc filesystem and thereby saving lots and lots
113// memory for more important things.
114// You can't use this and USE_PROCFS at the same time...
115//#define BB_FEATURE_USE_DEVPS_N_DEVMTAB
116//
117//
109// enable features that use the /proc filesystem (apps that 118// enable features that use the /proc filesystem (apps that
110// break without this will tell you on compile)... 119// break without this will tell you on compile)...
120// You can't use this and DEVPS_N_DEVMTAB at the same time...
111#define BB_FEATURE_USE_PROCFS 121#define BB_FEATURE_USE_PROCFS
112// 122//
113// Use termios to manipulate the screen ('more' is prettier with this on) 123// Use termios to manipulate the screen ('more' is prettier with this on)
@@ -161,6 +171,6 @@
161// just like an initrd does. Requires a kernel patch by Werner Almesberger. 171// just like an initrd does. Requires a kernel patch by Werner Almesberger.
162// ftp://icaftp.epfl.ch/pub/people/almesber/misc/umount-root-*.tar.gz 172// ftp://icaftp.epfl.ch/pub/people/almesber/misc/umount-root-*.tar.gz
163#ifdef BB_MOUNT 173#ifdef BB_MOUNT
164#define BB_FEATURE_INIT_CHROOT 174//#define BB_FEATURE_INIT_CHROOT
165#endif 175#endif
166// 176//