diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2022-06-28 10:40:36 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2023-10-17 13:19:34 +0900 |
commit | 640625b3c89177d1627ca57f1d57f94ceaad72c4 (patch) | |
tree | 53f221f26fc455144404e2a181678cb5af041845 /scripts/tizen | |
parent | 0f94fb42b3684b7b3542ef83bb471566de5b5f46 (diff) | |
download | u-boot-640625b3c89177d1627ca57f1d57f94ceaad72c4.tar.gz u-boot-640625b3c89177d1627ca57f1d57f94ceaad72c4.tar.bz2 u-boot-640625b3c89177d1627ca57f1d57f94ceaad72c4.zip |
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 <jh80.chung@samsung.com>
Diffstat (limited to 'scripts/tizen')
-rwxr-xr-x | scripts/tizen/sd_fusing_rpi4.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/tizen/sd_fusing_rpi4.sh b/scripts/tizen/sd_fusing_rpi4.sh index 0c297b602d..5fa27ff6b7 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 "" } |