diff options
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index cea191cb3..9aa46eaae 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -223,13 +223,16 @@ static const struct Applet applets[] = { #ifdef BB_RMMOD //sbin {"rmmod", rmmod_main}, #endif +#ifdef BB_SED //bin + {"sed", sed_main}, +#endif +#ifdef BB_SH //bin + {"sh", shell_main}, +#endif #ifdef BB_SFDISK //sbin {"fdisk", sfdisk_main}, {"sfdisk", sfdisk_main}, #endif -#ifdef BB_SED //bin - {"sed", sed_main}, -#endif #ifdef BB_SLEEP //bin {"sleep", sleep_main}, #endif |