summaryrefslogtreecommitdiff
path: root/include/applets.h
diff options
context:
space:
mode:
authorRob Landley2006-01-20 18:28:50 +0000
committerRob Landley2006-01-20 18:28:50 +0000
commitc1d69906a0c5f28f3d84c14afb3b74c8f19f81c1 (patch)
tree5e3796c33b995720bcd69f2b969e409e85bff119 /include/applets.h
parent7a43bd07e64e6db795d4661321da1cab14d9c4f6 (diff)
downloadbusybox-c1d69906a0c5f28f3d84c14afb3b74c8f19f81c1.zip
busybox-c1d69906a0c5f28f3d84c14afb3b74c8f19f81c1.tar.gz
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 47376c6..c6f54e1 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -408,6 +408,9 @@
#ifdef CONFIG_LSMOD
APPLET(lsmod, lsmod_main, _BB_DIR_SBIN, _BB_SUID_NEVER)
#endif
+#ifdef CONFIG_UNLZMA
+ APPLET(lzmacat, unlzma_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
+#endif
#ifdef CONFIG_MAKEDEVS
APPLET(makedevs, makedevs_main, _BB_DIR_SBIN, _BB_SUID_NEVER)
#endif
@@ -712,6 +715,9 @@
#ifdef CONFIG_UNIX2DOS
APPLET(unix2dos, dos2unix_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
#endif
+#ifdef CONFIG_UNLZMA
+ APPLET(unlzma, unlzma_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
+#endif
#ifdef CONFIG_UNZIP
APPLET(unzip, unzip_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
#endif