From cc58994f3bc9af3c0ffdee994ca2995a540f9512 Mon Sep 17 00:00:00 2001 From: Daniel Pineda Date: Thu, 1 Sep 2022 16:39:16 -0600 Subject: [PATCH] modules/coreboot: add support for coreboot 4.17 Update hash for coreboot module, coreboot-blobs. Signed-off-by: Daniel Pineda --- modules/coreboot | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/coreboot b/modules/coreboot index 62ef0ce8..6cdc5a15 100644 --- a/modules/coreboot +++ b/modules/coreboot @@ -35,10 +35,17 @@ else ifeq "$(CONFIG_COREBOOT_VERSION)" "4.15" coreboot-blobs_hash := c0e2d8006da226208ba274a44895d102cb2879cf139cc67bba5f62e67b871f6d coreboot_depends := $(if $(CONFIG_PURISM_BLOBS), purism-blobs) EXTRA_FLAGS := -fdebug-prefix-map=$(pwd)=heads -gno-record-gcc-switches -Wno-error=packed-not-aligned -Wno-error=address-of-packed-member +else ifeq "$(CONFIG_COREBOOT_VERSION)" "4.17" + coreboot_version := 4.17 + coreboot_hash := 95da11d1c6a450385101a68799258a398ce965f4e46cce6fe8d5ebd74e50c125 + coreboot-blobs_hash := a2277fe7a2b2aab5da0aa335158460e00b852382f6736f2179992805702eb607 + coreboot_depends := $(if $(CONFIG_PURISM_BLOBS), purism-blobs) + EXTRA_FLAGS := -fdebug-prefix-map=$(pwd)=heads -gno-record-gcc-switches -Wno-error=packed-not-aligned -Wno-error=address-of-packed-member else ifeq "$(CONFIG_COREBOOT_VERSION)" "talos_2" coreboot_version = git coreboot_commit_hash = 2207bbcccba31ad89cf21607b0d8d05d8dc47c03 coreboot_repo := https://github.com/Dasharo/coreboot + else $(error "$(BOARD): does not specify coreboot version under CONFIG_COREBOOT_VERSION") endif