diff options
author | Denys Vlasenko | 2013-11-14 11:39:00 +0100 |
---|---|---|
committer | Denys Vlasenko | 2013-11-14 11:39:00 +0100 |
commit | f6beef63c64abfc126ea4e73147af29d152f1a9e (patch) | |
tree | 71b1f243cda3ab4836219386f017e3d95a7f41d9 /archival/dpkg.c | |
parent | ac216873095a0d7c30737df5cdfa3bf6c261f079 (diff) | |
download | busybox-f6beef63c64abfc126ea4e73147af29d152f1a9e.zip busybox-f6beef63c64abfc126ea4e73147af29d152f1a9e.tar.gz |
archival/*: move "config:" snippets into .c files
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/dpkg.c')
-rw-r--r-- | archival/dpkg.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c index 288e7fa..2893cfc 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c @@ -14,7 +14,6 @@ * * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ - /* * known difference between busybox dpkg and the official dpkg that i don't * consider important, its worth keeping a note of differences anyway, just to @@ -27,6 +26,17 @@ * - (unknown, please let me know when you find any) */ +//config:config DPKG +//config: bool "dpkg" +//config: default n +//config: select FEATURE_SEAMLESS_GZ +//config: help +//config: dpkg is a medium-level tool to install, build, remove and manage +//config: Debian packages. +//config: +//config: This implementation of dpkg has a number of limitations, +//config: you should use the official dpkg if possible. + //applet:IF_DPKG(APPLET(dpkg, BB_DIR_USR_BIN, BB_SUID_DROP)) //kbuild:lib-$(CONFIG_DPKG) += dpkg.o |