aboutsummaryrefslogtreecommitdiff
path: root/include/applets.h
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-01-20 18:28:50 +0000
committerRob Landley <rob@landley.net>2006-01-20 18:28:50 +0000
commitc1d69906a0c5f28f3d84c14afb3b74c8f19f81c1 (patch)
tree5e3796c33b995720bcd69f2b969e409e85bff119 /include/applets.h
parent7a43bd07e64e6db795d4661321da1cab14d9c4f6 (diff)
downloadbusybox-w32-c1d69906a0c5f28f3d84c14afb3b74c8f19f81c1.tar.gz
busybox-w32-c1d69906a0c5f28f3d84c14afb3b74c8f19f81c1.tar.bz2
busybox-w32-c1d69906a0c5f28f3d84c14afb3b74c8f19f81c1.zip
Patch from Aurelien Jacobs to add unlzma. (A new decompression type,
see www.7-zip.org)
Diffstat (limited to 'include/applets.h')
-rw-r--r--include/applets.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h
index 47376c624..c6f54e157 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -408,6 +408,9 @@
408#ifdef CONFIG_LSMOD 408#ifdef CONFIG_LSMOD
409 APPLET(lsmod, lsmod_main, _BB_DIR_SBIN, _BB_SUID_NEVER) 409 APPLET(lsmod, lsmod_main, _BB_DIR_SBIN, _BB_SUID_NEVER)
410#endif 410#endif
411#ifdef CONFIG_UNLZMA
412 APPLET(lzmacat, unlzma_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
413#endif
411#ifdef CONFIG_MAKEDEVS 414#ifdef CONFIG_MAKEDEVS
412 APPLET(makedevs, makedevs_main, _BB_DIR_SBIN, _BB_SUID_NEVER) 415 APPLET(makedevs, makedevs_main, _BB_DIR_SBIN, _BB_SUID_NEVER)
413#endif 416#endif
@@ -712,6 +715,9 @@
712#ifdef CONFIG_UNIX2DOS 715#ifdef CONFIG_UNIX2DOS
713 APPLET(unix2dos, dos2unix_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) 716 APPLET(unix2dos, dos2unix_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
714#endif 717#endif
718#ifdef CONFIG_UNLZMA
719 APPLET(unlzma, unlzma_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
720#endif
715#ifdef CONFIG_UNZIP 721#ifdef CONFIG_UNZIP
716 APPLET(unzip, unzip_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) 722 APPLET(unzip, unzip_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
717#endif 723#endif