blob: 8d7d8de6ea7e910d35cb4feaad029a7fc92302a6 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001# short-description: Create a 'pcbios' direct disk image
2# long-description: Creates a partitioned legacy BIOS disk image that the user
3# can directly dd to boot media.
4
5
6part /boot --source bootimg-pcbios --ondisk sda --label boot --active --align 1024
Patrick Williams0ca19cc2021-08-16 14:03:13 -05007part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024 --use-uuid
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008
Patrick Williamsc0f7c042017-02-23 20:41:17 -06009bootloader --ptable gpt --timeout=0 --append="rootwait rootfstype=ext4 video=vesafb vga=0x318 console=tty0 console=ttyS0,115200n8"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010