diff options
author | Eric Andersen | 1999-10-19 20:03:34 +0000 |
---|---|---|
committer | Eric Andersen | 1999-10-19 20:03:34 +0000 |
commit | e77ae3a2c0328590b43447550bdb1284650b8236 (patch) | |
tree | 1e46d5cf36870771a4f3cedfe84f6161c3871131 /applets/busybox.c | |
parent | a3f09076ef5e9a2c26b4d0728cd066bba6c474e4 (diff) | |
download | busybox-e77ae3a2c0328590b43447550bdb1284650b8236.zip busybox-e77ae3a2c0328590b43447550bdb1284650b8236.tar.gz |
Added sfdisk. Ststic-ified a bunch of stuff.
Diffstat (limited to 'applets/busybox.c')
-rw-r--r-- | applets/busybox.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 3af9840..6bcb652 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -14,7 +14,7 @@ static const struct Applet applets[] = { {"block_device", block_device_main}, #endif #ifdef BB_CAT //bin - {"cat", cat_more_main}, + {"cat", cat_main}, #endif #ifdef BB_CHMOD_CHOWN_CHGRP //bin {"chmod", chmod_chown_chgrp_main}, @@ -43,7 +43,7 @@ static const struct Applet applets[] = { {"dmesg", dmesg_main}, #endif #ifdef BB_DUTMP //usr/sbin - {"dutmp", cat_more_main}, + {"dutmp", dutmp_main}, #endif #ifdef BB_FDFLUSH //bin {"fdflush", fdflush_main}, @@ -123,6 +123,10 @@ static const struct Applet applets[] = { #ifdef BB_RMDIR //bin {"rmdir", rmdir_main}, #endif +#ifdef BB_SFDISK //sbin + {"fdisk", sfdisk_main}, + {"sfdisk", sfdisk_main}, +#endif #ifdef BB_SLEEP //bin {"sleep", sleep_main}, #endif |