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 /applets | |
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 'applets')
-rw-r--r-- | applets/busybox.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 36cf0a0..cea191c 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -139,6 +139,9 @@ static const struct Applet applets[] = { #ifdef BB_KILL //bin {"kill", kill_main}, #endif +#ifdef BB_KILLALL //usr/bin + {"killall", kill_main}, +#endif #ifdef BB_LENGTH //usr/bin {"length", length_main}, #endif |