From 4471c6835a59d1e5c70f0ddcb27e1e9913273ff0 Mon Sep 17 00:00:00 2001 From: California Sullivan Date: Fri, 13 Apr 2018 12:58:23 -0700 Subject: wic: add systemd-bootdisk-microcode.wks Add wic kickstart file that includes microcode as an initrd for early update support. Signed-off-by: California Sullivan --- wic/systemd-bootdisk-microcode.wks | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 wic/systemd-bootdisk-microcode.wks diff --git a/wic/systemd-bootdisk-microcode.wks b/wic/systemd-bootdisk-microcode.wks new file mode 100644 index 00000000..c171fd8e --- /dev/null +++ b/wic/systemd-bootdisk-microcode.wks @@ -0,0 +1,13 @@ +# short-description: Create an EFI disk image with systemd-boot +# long-description: Creates a partitioned EFI disk image that the user +# can directly dd to boot media. The selected bootloader is systemd-boot. +# It also includes intel-microcode as an initrd for early update support. +# Based on OE-core's systemd-bootdisk.wks file. + +part /boot --source bootimg-efi --sourceparams="loader=systemd-boot,initrd=microcode.cpio" --ondisk sda --label msdos --active --align 1024 --use-uuid + +part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024 --use-uuid + +part swap --ondisk sda --size 44 --label swap1 --fstype=swap --use-uuid + +bootloader --ptable gpt --timeout=5 --append="rootwait rootfstype=ext4 console=ttyS0,115200 console=tty0" -- cgit v1.2.3-54-g00ecf