base-files: correctly split install-key function for APK
The function incorrectly tried to APK keys even if there were none. Correctly separate it into its own `ifdef` section. Signed-off-by: Paul Spooren <mail@aparcar.org> Link: https://github.com/openwrt/openwrt/pull/15519 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
This commit is contained in:
parent
b773ca1a96
commit
a96354bcfb
1 changed files with 7 additions and 4 deletions
|
@ -122,6 +122,13 @@ ifneq ($(CONFIG_USE_APK),)
|
||||||
$(STAGING_DIR_HOST)/bin/openssl ecparam -name prime256v1 -genkey -noout -out $(BUILD_KEY_APK_SEC); \
|
$(STAGING_DIR_HOST)/bin/openssl ecparam -name prime256v1 -genkey -noout -out $(BUILD_KEY_APK_SEC); \
|
||||||
$(STAGING_DIR_HOST)/bin/openssl ec -in $(BUILD_KEY_APK_SEC) -pubout > $(BUILD_KEY_APK_PUB)
|
$(STAGING_DIR_HOST)/bin/openssl ec -in $(BUILD_KEY_APK_SEC) -pubout > $(BUILD_KEY_APK_PUB)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
ifndef CONFIG_BUILDBOT
|
||||||
|
define Package/base-files/install-key
|
||||||
|
mkdir -p $(1)/etc/apk/keys
|
||||||
|
$(CP) $(BUILD_KEY_APK_PUB) $(1)/etc/apk/keys/
|
||||||
|
endef
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
ifdef CONFIG_SIGNED_PACKAGES
|
ifdef CONFIG_SIGNED_PACKAGES
|
||||||
define Build/Configure
|
define Build/Configure
|
||||||
|
@ -137,10 +144,6 @@ ifndef CONFIG_BUILDBOT
|
||||||
define Package/base-files/install-key
|
define Package/base-files/install-key
|
||||||
mkdir -p $(1)/etc/opkg/keys
|
mkdir -p $(1)/etc/opkg/keys
|
||||||
$(CP) $(BUILD_KEY).pub $(1)/etc/opkg/keys/`$(STAGING_DIR_HOST)/bin/usign -F -p $(BUILD_KEY).pub`
|
$(CP) $(BUILD_KEY).pub $(1)/etc/opkg/keys/`$(STAGING_DIR_HOST)/bin/usign -F -p $(BUILD_KEY).pub`
|
||||||
|
|
||||||
mkdir -p $(1)/etc/apk/keys
|
|
||||||
$(CP) $(BUILD_KEY_APK_PUB) $(1)/etc/apk/keys/
|
|
||||||
|
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue