From 34ac7e8aff43bff79b0e4772432bb65e85a0355e Mon Sep 17 00:00:00 2001 From: miao_kaibo Date: Mon, 1 Mar 2021 11:37:36 +0800 Subject: [PATCH] install rsync --- script/step/make_raspi_image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/step/make_raspi_image.sh b/script/step/make_raspi_image.sh index afed969..e013922 100644 --- a/script/step/make_raspi_image.sh +++ b/script/step/make_raspi_image.sh @@ -165,7 +165,7 @@ make_img(){ size=$(($size+1100)) losetup -D pwd - yum install dosfstools parted -y -c "${yum_conf}" + yum install dosfstools parted rsync -y -c "${yum_conf}" dd if=/dev/zero of=${img_file} bs=1MiB count=$size && sync parted ${img_file} mklabel msdos mkpart primary fat32 8192s 593919s parted ${img_file} -s set 1 boot -- Gitee