diff options
author | Eric Andersen | 2000-11-29 21:38:11 +0000 |
---|---|---|
committer | Eric Andersen | 2000-11-29 21:38:11 +0000 |
commit | e500d2083560b2988e7e48e00ba836ce0450c656 (patch) | |
tree | 8541687153725cb192f1fac48ddadbb060b4c24e /applets.h | |
parent | d58ff8731ce635a75406cc8b9629f1041bb4ed32 (diff) | |
download | busybox-e500d2083560b2988e7e48e00ba836ce0450c656.zip busybox-e500d2083560b2988e7e48e00ba836ce0450c656.tar.gz |
Apply a patch fromkent robotti:
Renamed unrpm to original rpmunpack, so you can use an included shell script
called unrpm as a front end to it.
There's also a shell script called undeb included for debian packages.
Change undeb and unrpm scripts to work with the busybox tar and gunzip.
Diffstat (limited to 'applets.h')
-rw-r--r-- | applets.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -262,6 +262,9 @@ const struct BB_applet applets[] = { #ifdef BB_RMMOD {"rmmod", rmmod_main, _BB_DIR_SBIN, rmmod_usage}, #endif +#ifdef BB_RPMUNPACK + {"rpmunpack", rpmunpack_main, _BB_DIR_USR_BIN, rpmunpack_usage}, +#endif #ifdef BB_SED {"sed", sed_main, _BB_DIR_BIN, sed_usage}, #endif @@ -328,9 +331,6 @@ const struct BB_applet applets[] = { #ifdef BB_UNIX2DOS {"unix2dos", unix2dos_main, _BB_DIR_USR_BIN, unix2dos_usage}, #endif -#ifdef BB_UNRPM - {"unrpm", unrpm_main, _BB_DIR_USR_BIN, unrpm_usage}, -#endif #ifdef BB_UPDATE {"update", update_main, _BB_DIR_SBIN, update_usage}, #endif |