mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-05 05:15:25 +02:00

New bootimg-biosxen wic plugin to populate a boot partition for launching Xen and dom0. Includes example kickstart wks files to generate disk images to boot into Xen from PC BIOS. eg: wic create directdisk-xen -e xen-image-minimal and write the resulting image file to a disk for boot. Signed-off-by: Christopher Clark <christopher.clark6@baesystems.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
13 lines
663 B
Plaintext
13 lines
663 B
Plaintext
# short-description: Create a 'pcbios' direct disk image with Xen hypervisor and bootloader config
|
|
# long-description: Creates a partitioned legacy BIOS disk image to boot Xen
|
|
# with a bootloader config that the user can directly dd to boot media.
|
|
# Boot files are located on the first vfat partition.
|
|
|
|
part /boot --source bootimg-biosxen --ondisk sda --label boot --active --align 1024
|
|
|
|
# For the main partition, it can be useful to add additional space for VMs;
|
|
# eg. increase partition size by appending: --size 10G
|
|
part / --source rootfs --ondisk sda --use-uuid --fstype=ext4 --label root --align 1024
|
|
|
|
bootloader --configfile="directdisk-bootloader-xen.cfg"
|