diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-10-05 03:48:57 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-10-05 03:48:57 +0000 |
commit | 1eb2cc0584e2dd10c54d6dc02416d8b11a542e58 (patch) | |
tree | 9555ce149062ec16167d77aa6a5d7a55850c511d /include/applets.h | |
parent | ba46fd6221046c4eccf2169221486c5d45c1decf (diff) | |
download | busybox-w32-1eb2cc0584e2dd10c54d6dc02416d8b11a542e58.tar.gz busybox-w32-1eb2cc0584e2dd10c54d6dc02416d8b11a542e58.tar.bz2 busybox-w32-1eb2cc0584e2dd10c54d6dc02416d8b11a542e58.zip |
Initial support for for bunzip2....
This code could be improvemed by
1) supporting more options,
2) Creating a shared crc table with gunzip, or perhaps generated on the fly.
3) Removing any remaining unneccessary code (e.g. if (noisy))
git-svn-id: svn://busybox.net/trunk/busybox@3491 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index ab8727b71..461c878df 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -64,6 +64,9 @@ | |||
64 | #ifdef BB_BASENAME | 64 | #ifdef BB_BASENAME |
65 | APPLET(basename, basename_main, _BB_DIR_USR_BIN) | 65 | APPLET(basename, basename_main, _BB_DIR_USR_BIN) |
66 | #endif | 66 | #endif |
67 | #ifdef BB_BUNZIP2 | ||
68 | APPLET(bunzip2, bunzip2_main, _BB_DIR_USR_BIN) | ||
69 | #endif | ||
67 | APPLET_NOUSAGE("busybox", busybox_main, _BB_DIR_BIN) | 70 | APPLET_NOUSAGE("busybox", busybox_main, _BB_DIR_BIN) |
68 | #ifdef BB_CAT | 71 | #ifdef BB_CAT |
69 | APPLET(cat, cat_main, _BB_DIR_BIN) | 72 | APPLET(cat, cat_main, _BB_DIR_BIN) |