Fix sector

This commit is contained in:
Augusto Gunsch 2021-08-09 15:51:18 -03:00
parent 2787756e5c
commit d1d0c39a8f
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ partition() {
echo -n "Partitioning drive..." echo -n "Partitioning drive..."
parted --script "$DRIVE_TARGET" \ parted --script "$DRIVE_TARGET" \
mklabel gpt \ mklabel gpt \
mkpart swap ext4 0MiB 4GiB \ mkpart swap ext4 1MiB 4GiB \
mkpart boot ext4 4GiB 5Gib \ mkpart boot ext4 4GiB 5Gib \
mkpart root ext4 5GiB 100% mkpart root ext4 5GiB 100%
echo "done" echo "done"