artifact-uboot: fix: include UBOOT_TARGET_MAP in variables hash of version

This commit is contained in:
Ricardo Pardini
2023-04-29 21:17:10 +02:00
committed by igorpecovnik
parent c692676da7
commit 91bb00bfa2

View File

@@ -79,7 +79,7 @@ function artifact_uboot_prepare_version() {
# Hash variables that affect the build and package of u-boot
declare -a vars_to_hash=(
"${BOOTDELAY}" "${UBOOT_DEBUGGING}"
"${BOOTDELAY}" "${UBOOT_DEBUGGING}" "${UBOOT_TARGET_MAP}"
)
declare hash_vars="undetermined"
hash_vars="$(echo "${vars_to_hash[@]}" | sha256sum | cut -d' ' -f1)"