This commit is contained in:
teldra 2022-02-07 15:47:50 +01:00
parent 8ff0c60bc3
commit 90d80cb539
1 changed files with 2 additions and 2 deletions

View File

@ -91,11 +91,11 @@ do_partition() {
parted $TARGET_PHY_ID -s -- mklabel gpt
sleep 2
size=512
parted $TARGET_PHY_ID unit mib -s -- mkpart "EFI system partition" fat32 $start $(( start + size ))
parted $TARGET_PHY_ID unit mib -s -- mkpart 'EFI system partition' fat32 $start $(( start + size ))
parted $TARGET_PHY_ID unit mib -s -- set 1 esp on
sleep 2
start=$(( start + size ))
parted $TARGET_PHY_ID unit mib -s -- mkpart "root partition" ext4 $start -1s
parted $TARGET_PHY_ID unit mib -s -- mkpart 'root partition' ext4 $start -1s
sleep 2
mkfs.vfat -F32 ${TARGET_PHY_ID}-part1
TARGET_PART="2"