diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2014-08-06 09:12:37 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2014-08-06 09:12:37 +0000 |
commit | 960b7643c9a65124b13a478c49a8a89848391edb (patch) | |
tree | fb37c9a22ff3dbc19d2668b532a290388190c4ec /package | |
parent | e1258f984ac16f84182e0d4202258d89483bfe0d (diff) | |
download | upstream-960b7643c9a65124b13a478c49a8a89848391edb.tar.gz upstream-960b7643c9a65124b13a478c49a8a89848391edb.tar.bz2 upstream-960b7643c9a65124b13a478c49a8a89848391edb.zip |
build: add new option to add disabled feeds commented out to opkg.conf
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 42004
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/image-config.in | 7 | ||||
-rw-r--r-- | package/system/opkg/Makefile | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/package/base-files/image-config.in b/package/base-files/image-config.in index d745369a2c..3029648d85 100644 --- a/package/base-files/image-config.in +++ b/package/base-files/image-config.in @@ -216,6 +216,13 @@ menuconfig PER_FEED_REPO If set, a separate repository is generated within bin/*/packages/ for the core packages and each enabled feed. + config PER_FEED_REPO_ADD_DISABLED + bool "Add installed but disabled feeds to opkg.conf" + default y + depends on PER_FEED_REPO + help + Add installed but disabled feeds as commented out source lines to opkg.conf. + source "tmp/.config-feeds.in" diff --git a/package/system/opkg/Makefile b/package/system/opkg/Makefile index 5dfabc2ca2..8a63fb4352 100644 --- a/package/system/opkg/Makefile +++ b/package/system/opkg/Makefile @@ -111,6 +111,11 @@ define Package/opkg/Default/install for d in base $(FEEDS_ENABLED); do \ echo "src/gz %n_$$$$d %U/$$$$d" >> $(1)/etc/opkg.conf; \ done + ifneq ($(CONFIG_PER_FEED_REPO_ADD_DISABLED),) + for d in $(FEEDS_DISABLED); do \ + echo "# src/gz %n_$$$$d %U/$$$$d" >> $(1)/etc/opkg.conf; \ + done + endif endif $(VERSION_SED) $(1)/etc/opkg.conf $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/opkg-cl $(1)/bin/opkg |