From: Jaehoon Chung Date: Mon, 25 Jul 2022 06:25:54 +0000 (+0900) Subject: scripts: sd_fusing_rpi4: remove resize2fs command X-Git-Tag: accepted/tizen/unified/20231106.171643~88 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bbed9bd63a59c3d9bf6eb0685878f2806d125cac;p=platform%2Fkernel%2Fu-boot.git scripts: sd_fusing_rpi4: remove resize2fs command Remove resize2fs command about ext4 partitions. It'll be resized at first booting time. Change-Id: I6a255ffd847c133183383d4a93e10e437b8f040d Signed-off-by: Jaehoon Chung --- diff --git a/scripts/tizen/sd_fusing_rpi4.sh b/scripts/tizen/sd_fusing_rpi4.sh index 430018fbf9..02a326db12 100755 --- a/scripts/tizen/sd_fusing_rpi4.sh +++ b/scripts/tizen/sd_fusing_rpi4.sh @@ -137,11 +137,6 @@ function fusing_image () { else dd if=$fusing_img of=$device bs=$bs status=progress oflag=direct fi - - local -r fstype=`blkid -o value -s TYPE $device` - if [[ "$fstype" =~ "ext" ]]; then - resize2fs -f $device - fi } function fusing_image_to_b () { @@ -185,11 +180,6 @@ function fusing_image_to_b () { else dd if=$fusing_img of=$device bs=$bs status=progress oflag=direct fi - - local -r fstype=`blkid -o value -s TYPE $device` - if [[ "$fstype" =~ "ext" ]]; then - resize2fs -f $device - fi } function fuse_image_tarball () { @@ -505,7 +495,7 @@ function check_device () { function print_logo () { echo "" - echo "Raspberry Pi4 downloader, version 1.0.5" + echo "Raspberry Pi4 downloader, version 1.0.6" echo "" }