build: add integration for managing opkg package feed keys

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 45286
This commit is contained in:
Felix Fietkau
2015-04-06 19:39:51 +00:00
parent dde8214d16
commit beca028bd6
7 changed files with 106 additions and 5 deletions

View File

@@ -143,6 +143,14 @@ $(curdir)/index: FORCE
$(SCRIPT_DIR)/ipkg-make-index.sh . 2>&1 > Packages && \
gzip -9c Packages > Packages.gz; \
); done
ifdef CONFIG_SIGNED_PACKAGES
@echo Signing package index...
@for d in $(PACKAGE_SUBDIRS); do ( \
[ -d $(PACKAGE_DIR)/$$d ] && \
cd $(PACKAGE_DIR)/$$d || continue; \
$(STAGING_DIR_HOST)/bin/usign -S -m Packages -s $(BUILD_KEY); \
); done
else
ifeq ($(call qstrip,$(CONFIG_OPKGSMIME_KEY)),)
@echo Signing key has not been configured
else
@@ -161,6 +169,7 @@ else
); done
endif
endif
endif
$(curdir)/preconfig: