summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralk3pInjection <webmaster@raspii.tech>2024-01-02 00:00:00 +0800
committeralk3pInjection <webmaster@raspii.tech>2024-01-02 00:00:00 +0800
commitc0e1e428c10f241589d12ba3c5389a4c7290f0b1 (patch)
treee05354764f2da82ba4d0885dbfc621e31e99dfad
parent636635c20a6de9c81fe80242ad05753fe11023d9 (diff)
Revert "extract-utils: Use newly introduced add-radio-file-sha1-checked macro"umineko
lfs isn't utilised here. This reverts commit f6abdcd93fc900ef2a4d5586b16b30e7a0f60ca5. Change-Id: I5f1e1d6ba813880dc2514fa74737d1c20698cf99
-rw-r--r--extract_utils.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/extract_utils.sh b/extract_utils.sh
index b7e14b2..8c56598 100644
--- a/extract_utils.sh
+++ b/extract_utils.sh
@@ -1291,7 +1291,6 @@ function append_firmware_calls_to_makefiles() {
for (( i=1; i<COUNT+1; i++ )); do
local DST_FILE=$(target_file "${FILELIST[$i-1]}")
local ARGS=$(target_args "${FILELIST[$i-1]}")
- local SHA1=$(get_hash "$ANDROID_ROOT"/"$OUTDIR"/radio/"$DST_FILE")
DST_FILE_NAME=(${DST_FILE//.img/ })
ARGS=(${ARGS//;/ })
LINEEND=" \\"
@@ -1304,7 +1303,7 @@ function append_firmware_calls_to_makefiles() {
printf ' %s%s\n' "$DST_FILE_NAME" "$LINEEND" >> "$BOARDMK"
fi
done
- printf '%s\n' "\$(call add-radio-file-sha1-checked,radio/$DST_FILE,$SHA1)" >> "$ANDROIDMK"
+ printf '%s\n' "\$(call add-radio-file,radio/$DST_FILE)" >> "$ANDROIDMK"
done
printf '\n' >> "$ANDROIDMK"
}