mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
Build: Fix build of grub image when choosing GPT scheme
This commit is contained in:
parent
43d833d94f
commit
0f208669af
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ if [ "$1" = "mbr" ]; then
|
|||
partition_number="p1"
|
||||
partition_scheme="mbr"
|
||||
elif [ "$1" = "gpt" ]; then
|
||||
parted -s "${dev}" mklabel gpt mkpart BIOSBOOT ext3 1MiB 8MiB mkpart OS ext2 8MiB 700MiB set 1 bios_grub || die "couldn't partition disk"
|
||||
parted -s "${dev}" mklabel gpt mkpart BIOSBOOT ext3 1MiB 8MiB mkpart OS ext2 8MiB 290MiB set 1 bios_grub || die "couldn't partition disk"
|
||||
partition_number="p2"
|
||||
partition_scheme="gpt"
|
||||
elif [ "$1" = "ebr" ]; then
|
||||
|
|
Loading…
Reference in a new issue