| # short-description: Create an EFI disk image without a swap partition |
| # long-description: Creates a partitioned EFI disk image that the user |
| # can directly dd to boot media. This image will not contain a swap |
| # partition but will contain custom machine specific grub arguments. |
| |
| part /boot --source bootimg-efi --sourceparams="loader=${EFI_PROVIDER}" --label boot --active --align 1024 --use-uuid |
| |
| part / --source rootfs --fstype=ext4 --label root --align 1024 --use-uuid |
| |
| bootloader --ptable gpt --timeout=1 --append="${GRUB_LINUX_APPEND}" |