summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCalifornia Sullivan <california.l.sullivan@intel.com>2018-04-13 12:58:23 -0700
committerCalifornia Sullivan <california.l.sullivan@intel.com>2018-04-17 14:13:19 -0700
commit83d31356602172bb86c2eb5b83d81c301b1baaf9 (patch)
tree371de1a708392c019e88c4e1947b0b406abd64d4
parentfe45bbfe7cc85c88e0d190b3e9dcdf46d089df28 (diff)
downloadmeta-intel-83d31356602172bb86c2eb5b83d81c301b1baaf9.tar.gz
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 <california.l.sullivan@intel.com> (cherry picked from commit 4471c6835a59d1e5c70f0ddcb27e1e9913273ff0) Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
-rw-r--r--wic/systemd-bootdisk-microcode.wks13
1 files changed, 13 insertions, 0 deletions
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 @@
1# short-description: Create an EFI disk image with systemd-boot
2# long-description: Creates a partitioned EFI disk image that the user
3# can directly dd to boot media. The selected bootloader is systemd-boot.
4# It also includes intel-microcode as an initrd for early update support.
5# Based on OE-core's systemd-bootdisk.wks file.
6
7part /boot --source bootimg-efi --sourceparams="loader=systemd-boot,initrd=microcode.cpio" --ondisk sda --label msdos --active --align 1024 --use-uuid
8
9part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024 --use-uuid
10
11part swap --ondisk sda --size 44 --label swap1 --fstype=swap --use-uuid
12
13bootloader --ptable gpt --timeout=5 --append="rootwait rootfstype=ext4 console=ttyS0,115200 console=tty0"