diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-10-25 23:32:44 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-10-25 23:32:44 +0000 |
commit | 0460ff2e5d443b485c2f6447c8c2ece1b3bec9c3 (patch) | |
tree | d761a790ee864a0a566d29c9d56173763fa04888 /applets | |
parent | d143e8f2bd03470e891a5e3ccca5734edd917e73 (diff) | |
download | busybox-0460ff2e5d443b485c2f6447c8c2ece1b3bec9c3.tar.gz |
Stuf
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index d4313ef06..05144c472 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -51,6 +51,12 @@ static const struct Applet applets[] = { #ifdef BB_FIND //usr/bin {"find", find_main}, #endif +#ifdef BB_CHVT //usr/bin + {"chvt", chvt_main}, +#endif +#ifdef BB_DEALLOCVT //usr/bin + {"deallocvt", deallocvt_main}, +#endif #ifdef BB_FSCK_MINIX //sbin {"fsck.minix", fsck_minix_main}, #endif @@ -156,6 +162,9 @@ static const struct Applet applets[] = { {"true", true_main}, {"false", false_main}, #endif +#ifdef BB_UNAME //bin + {"uname", uname_main}, +#endif #ifdef BB_UMOUNT //bin {"umount", umount_main}, #endif |