[openwrt/openwrt] openwrt-keyring: fix missing 24.10 usign key by installing it

LEDE Commits lede-commits at lists.infradead.org
Sun Nov 3 23:41:57 PST 2024


ynezz pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/37784c48e93c663dafc99454c24bebf4e258556f

commit 37784c48e93c663dafc99454c24bebf4e258556f
Author: Petr Štetiar <ynezz at true.cz>
AuthorDate: Mon Nov 4 07:33:37 2024 +0000

    openwrt-keyring: fix missing 24.10 usign key by installing it
    
    @KA2107 reported that opkg is not able to verify the artifact signatures
    produced by buildbot using the usign 24.10 release keys. So lets fix it
    by actually adding the 24.10 usign key with d310c6f2833e97f7 fingerprint
    into the openwrt-keyring package.
    
    Fixes: #16850
    Reported-by: @KA2107
    Fixes: a535cfc09e1c ("openwrt-keyring: add OpenWrt 24.10 release build usign key")
    Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
 package/system/openwrt-keyring/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/package/system/openwrt-keyring/Makefile b/package/system/openwrt-keyring/Makefile
index 029463817b..e499fc0beb 100644
--- a/package/system/openwrt-keyring/Makefile
+++ b/package/system/openwrt-keyring/Makefile
@@ -3,7 +3,7 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=openwrt-keyring
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_URL=$(PROJECT_GIT)/keyring.git
@@ -40,6 +40,8 @@ define Package/openwrt-keyring/install
 	$(INSTALL_DIR) $(1)/etc/opkg/keys/
 	# Public usign key for unattended snapshot builds
 	$(INSTALL_DATA) $(PKG_BUILD_DIR)/usign/b5043e70f9a75cde $(1)/etc/opkg/keys/
+	# Public usign key for 24.10 release builds
+	$(INSTALL_DATA) $(PKG_BUILD_DIR)/usign/d310c6f2833e97f7 $(1)/etc/opkg/keys/
 endef
 endif
 




More information about the lede-commits mailing list