More stuff.
[oweals/busybox.git] / busybox.c
index 4849ba0a4351c90c70c7a5abe23abf4365e05a0a..29a112b12f088933100ad8a8fd4c2920d669de15 100644 (file)
--- a/busybox.c
+++ b/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
@@ -117,6 +123,9 @@ static const struct Applet applets[] = {
 #ifdef BB_PRINTF               //usr/bin
     {"printf", printf_main},
 #endif
+#ifdef BB_PS                   //bin
+    {"ps", ps_main},
+#endif
 #ifdef BB_PWD                  //bin
     {"pwd", pwd_main},
 #endif
@@ -133,6 +142,9 @@ static const struct Applet applets[] = {
     {"fdisk", sfdisk_main},
     {"sfdisk", sfdisk_main},
 #endif
+#ifdef BB_SED                  //bin
+    {"sed", sed_main},
+#endif
 #ifdef BB_SLEEP                        //bin
     {"sleep", sleep_main},
 #endif
@@ -153,6 +165,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