From: Jaehoon Chung Date: Tue, 28 Jun 2022 01:40:36 +0000 (+0900) Subject: scripts: tizen: rpi4: disable metadata_csum feature about inform partition X-Git-Tag: accepted/tizen/unified/20220701.055139~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=af4290a964f7db4f6a555fe238ea5656590d20aa;p=platform%2Fkernel%2Fu-boot.git scripts: tizen: rpi4: disable metadata_csum feature about inform partition Disable metadata_csum feature about inform partition. It needs to disable to use ext4write command. Change-Id: I0fee6fd08cbb9dc3426842ba0e26bd2fbab6dda1 Signed-off-by: Jaehoon Chung --- diff --git a/scripts/tizen/sd_fusing_rpi4.sh b/scripts/tizen/sd_fusing_rpi4.sh index 0c297b6..5fa27ff 100755 --- a/scripts/tizen/sd_fusing_rpi4.sh +++ b/scripts/tizen/sd_fusing_rpi4.sh @@ -389,7 +389,7 @@ function mkpart_3 () { done local -r PART9=/dev/`lsblk ${DISK} -o TYPE,KNAME | grep part | awk '{ print $2 }' | grep -G "[a-z]9\$"` - mkfs.ext4 -q ${PART9} -L $INFORM -F + mkfs.ext4 -q ${PART9} -L $INFORM -F -O ^metadata_csum # create "reboot-param.bin" file in inform partition for passing reboot parameter # It should be done only once upon partition format. @@ -500,7 +500,7 @@ function check_device () { function print_logo () { echo "" - echo "Raspberry Pi4 downloader, version 1.0.1" + echo "Raspberry Pi4 downloader, version 1.0.2" echo "" }