diff options
Diffstat (limited to 'applets/busybox.c')
-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 d4313ef..05144c4 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 |