sort is good to go.
[oweals/busybox.git] / busybox.c
index ed5a2b0d4f1adfafb5b7e163528efc3e03300689..cd4ab8fcd9675f2a0b224a3d27712421da8e73e6 100644 (file)
--- a/busybox.c
+++ b/busybox.c
@@ -87,6 +87,9 @@ static const struct Applet applets[] = {
 #ifdef BB_INIT                 //sbin
     {"init", init_main},
 #endif
+#ifdef BB_INSMOD               //sbin
+    {"insmod", insmod_main},
+#endif
 #ifdef BB_FEATURE_LINUXRC      //
     {"linuxrc", init_main},
 #endif
@@ -168,6 +171,9 @@ static const struct Applet applets[] = {
 #ifdef BB_RMDIR                        //bin
     {"rmdir", rmdir_main},
 #endif
+#ifdef BB_RMMOD                        //sbin
+    {"rmmod", rmmod_main},
+#endif
 #ifdef BB_SFDISK               //sbin
     {"fdisk", sfdisk_main},
     {"sfdisk", sfdisk_main},
@@ -178,6 +184,9 @@ static const struct Applet applets[] = {
 #ifdef BB_SLEEP                        //bin
     {"sleep", sleep_main},
 #endif
+#ifdef BB_SORT                 //bin
+    {"sort", sort_main},
+#endif
 #ifdef BB_SYNC                 //bin
     {"sync", sync_main},
 #endif