Files
vm-bhyve/sample-templates/coreos.conf
Ľubomír Kučera 4d3cf60e0d coreos: Use UEFI to boot from a disk
CoreOS uses its own, modified version of GRUB to load the
appropriate vmlinuz image and mount the appropriate USR partition.
Not using it would leave you to change the boot command manually
everytime your installation performs an update.

On the other hand, CoreOS installation image is not EFI bootable
right now. So, if you want to install from the image, use GRUB
loader and revert back to using UEFI after installation is complete.
2016-12-17 16:31:28 +01:00

15 lines
328 B
Plaintext

# Use GRUB when booting from an installation medium
#loader="grub"
# Use UEFI when booting from a disk
uefi="yes"
cpu=1
memory=1024M
network0_type="virtio-net"
network0_switch="public"
disk0_type="virtio-blk"
disk0_name="disk0.img"
grub_install0="linux /coreos/vmlinuz coreos.autologin"
grub_install1="initrd /coreos/cpio.gz"