[openwrt/openwrt] uboot-layerscape: update PKG_HASH

LEDE Commits lede-commits at lists.infradead.org
Sun Jul 17 05:46:39 PDT 2022


chunkeey pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/e879cccaa21563a7cdf47797b18fb86723720158

commit e879cccaa21563a7cdf47797b18fb86723720158
Author: Christian Lamparter <chunkeey at gmail.com>
AuthorDate: Fri Jul 15 21:07:42 2022 +0200

    uboot-layerscape: update PKG_HASH
    
    The change of the PKG_VERSION caused the hash of the package to
    change. This is because the PKG_VERSION is present in the
    internal directory structure of the uboot-layerscape-21.08.tar.xz
    archive.
    
    i.e:
     # tar tf uboot-layerscape-21.08.tar.xz:
    
    uboot-layerscape-21.08/
    uboot-layerscape-21.08/.azure-pipelines.yml
    uboot-layerscape-21.08/.checkpatch.conf
    uboot-layerscape-21.08/.gitattributes
    uboot-layerscape-21.08/.github/
    [...]
    
    vs.
    
     # tar tf uboot-layerscape-LSDK-21.08.tar.xz
    uboot-layerscape-LSDK-21.08/
    uboot-layerscape-LSDK-21.08/.azure-pipelines.yml
    uboot-layerscape-LSDK-21.08/.checkpatch.conf
    uboot-layerscape-LSDK-21.08/.gitattributes
    uboot-layerscape-LSDK-21.08/.github/
    [...]
    
    the (file) content of both archives are otherwise the same.
    
    The PKG_HASH was taken from the builder log:
    | Hash of the local file uboot-layerscape-21.08.tar.xz does not match
    |(file: 54909a98bdcc26c7f9b35b35fcae09b977ecbf044be7bffa6dad9306c47cccf6,
    |requested: 874e871755ef84ebbf3[...]) - deleting download.
    
    without this update, the uboot-layerscape-21.08 package would
    always try to download (from git), repacked the archive and
    reupload to sources.openwrt.org (~14 MiB saved).
    
    Fixes: 038d5bdab117 ("layerscape: use semantic versions for LSDK")
    Signed-off-by: Christian Lamparter <chunkeey at gmail.com>
---
 package/boot/uboot-layerscape/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/boot/uboot-layerscape/Makefile b/package/boot/uboot-layerscape/Makefile
index bd30a15ade..53d21f59dc 100644
--- a/package/boot/uboot-layerscape/Makefile
+++ b/package/boot/uboot-layerscape/Makefile
@@ -14,7 +14,7 @@ PKG_RELEASE:=$(AUTORELEASE)
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_URL:=https://source.codeaurora.org/external/qoriq/qoriq-components/u-boot
 PKG_SOURCE_VERSION:=LSDK-21.08
-PKG_MIRROR_HASH:=874e871755ef84ebbf35cc247f0979ec18ed1946e4dca71006a83463b2899db1
+PKG_MIRROR_HASH:=54909a98bdcc26c7f9b35b35fcae09b977ecbf044be7bffa6dad9306c47cccf6
 
 include $(INCLUDE_DIR)/u-boot.mk
 include $(INCLUDE_DIR)/package.mk




More information about the lede-commits mailing list