diff options
Diffstat (limited to 'archival/dpkg_deb.c')
-rw-r--r-- | archival/dpkg_deb.c | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/archival/dpkg_deb.c b/archival/dpkg_deb.c index a04ec9407..13f9db991 100644 --- a/archival/dpkg_deb.c +++ b/archival/dpkg_deb.c | |||
@@ -5,8 +5,33 @@ | |||
5 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 5 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | //config:config DPKG_DEB | ||
9 | //config: bool "dpkg_deb" | ||
10 | //config: default n | ||
11 | //config: select FEATURE_SEAMLESS_GZ | ||
12 | //config: help | ||
13 | //config: dpkg-deb unpacks and provides information about Debian archives. | ||
14 | //config: | ||
15 | //config: This implementation of dpkg-deb cannot pack archives. | ||
16 | //config: | ||
17 | //config: Unless you have a specific application which requires dpkg-deb, | ||
18 | //config: say N here. | ||
19 | //config: | ||
20 | //config:config FEATURE_DPKG_DEB_EXTRACT_ONLY | ||
21 | //config: bool "Extract only (-x)" | ||
22 | //config: default n | ||
23 | //config: depends on DPKG_DEB | ||
24 | //config: help | ||
25 | //config: This reduces dpkg-deb to the equivalent of | ||
26 | //config: "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none | ||
27 | //config: of the extra dpkg-deb, ar or tar options are needed, they are linked | ||
28 | //config: to internally. | ||
29 | |||
30 | //applet:IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, BB_DIR_USR_BIN, BB_SUID_DROP, dpkg_deb)) | ||
31 | //kbuild:lib-$(CONFIG_DPKG_DEB) += dpkg_deb.o | ||
32 | |||
8 | //usage:#define dpkg_deb_trivial_usage | 33 | //usage:#define dpkg_deb_trivial_usage |
9 | //usage: "[-cefxX] FILE [argument" | 34 | //usage: "[-cefxX] FILE [argument]" |
10 | //usage:#define dpkg_deb_full_usage "\n\n" | 35 | //usage:#define dpkg_deb_full_usage "\n\n" |
11 | //usage: "Perform actions on Debian packages (.debs)\n" | 36 | //usage: "Perform actions on Debian packages (.debs)\n" |
12 | //usage: "\n -c List contents of filesystem tree" | 37 | //usage: "\n -c List contents of filesystem tree" |