aboutsummaryrefslogtreecommitdiff
path: root/include/applets.h
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-20 18:28:50 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-20 18:28:50 +0000
commitcf9cc891b601b9a27f14a4d1b97d57e3eb5f7fbf (patch)
tree5e3796c33b995720bcd69f2b969e409e85bff119 /include/applets.h
parent3a92934f04fb736a84db01fc5c5d0de67e45f167 (diff)
downloadbusybox-w32-cf9cc891b601b9a27f14a4d1b97d57e3eb5f7fbf.tar.gz
busybox-w32-cf9cc891b601b9a27f14a4d1b97d57e3eb5f7fbf.tar.bz2
busybox-w32-cf9cc891b601b9a27f14a4d1b97d57e3eb5f7fbf.zip
Patch from Aurelien Jacobs to add unlzma. (A new decompression type,
see www.7-zip.org) git-svn-id: svn://busybox.net/trunk/busybox@13454 69ca8d6d-28ef-0310-b511-8ec308f3f277
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