From 2b40f62594bf34199757caf2284ca3731c3f4f6f Mon Sep 17 00:00:00 2001 From: Pawel Langowski Date: Fri, 18 Oct 2024 09:29:14 +0200 Subject: [PATCH] include/dts-functions.sh: Do not throw error when hfsts6 cannot be read Signed-off-by: Pawel Langowski --- include/dts-functions.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/dts-functions.sh b/include/dts-functions.sh index 53c840d4..1b4fffee 100644 --- a/include/dts-functions.sh +++ b/include/dts-functions.sh @@ -1768,8 +1768,7 @@ check_if_fused() { done <"$file_path" if [[ -z $hfsts6_value ]]; then - echo "Failed to read HFSTS6 value" - exit 1 + return 0 fi hfsts6_binary=$(echo "ibase=16; obase=2; $hfsts6_value" | bc)