imagebuilder: fix APK keys dir creation
Make keys directory for APK instead of OPKG while adding local key. Signed-off-by: Kuan-Yi Li <kyli@abysm.org> Link: https://github.com/openwrt/openwrt/pull/16942 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
This commit is contained in:
parent
b902284290
commit
93d005e6bc
|
@ -249,7 +249,7 @@ ifeq ($(CONFIG_USE_APK),)
|
||||||
else
|
else
|
||||||
$(if $(CONFIG_SIGNATURE_CHECK), \
|
$(if $(CONFIG_SIGNATURE_CHECK), \
|
||||||
$(if $(ADD_LOCAL_KEY), \
|
$(if $(ADD_LOCAL_KEY), \
|
||||||
mkdir -p $(TARGET_DIR)/etc/opkg/keys/; \
|
mkdir -p $(TARGET_DIR)/etc/apk/keys/; \
|
||||||
cp $(BUILD_KEY_APK_PUB) $(TARGET_DIR)/etc/apk/keys/; \
|
cp $(BUILD_KEY_APK_PUB) $(TARGET_DIR)/etc/apk/keys/; \
|
||||||
) \
|
) \
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue