run: mark ext2 partition as bootable

When building for the 'disk' run target, the ext2 partition needs to be
marked as bootable to be booted from on some hardware.

Fixes #1270
This commit is contained in:
Christian Prochaska 2014-10-06 13:27:33 +02:00 committed by Christian Helmuth
parent 2350eac251
commit 1e424a6fd2
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ proc create_disk_image_from_run_dir { } {
# merge final image from GRUB2 head and partition
exec dd if=$grub_img of=$disk_img status=noxfer bs=1M count=1 2>/dev/null
exec dd if=$part1_img of=$disk_img status=noxfer bs=1M seek=1 2>/dev/null
exec parted -s $disk_img -- rm 1 mkpart primary 2048s -1s
exec parted -s $disk_img -- rm 1 mkpart primary 2048s -1s set 1 boot on
exec rm -f $part1_img