summaryrefslogtreecommitdiffstats
path: root/wic
diff options
context:
space:
mode:
Diffstat (limited to 'wic')
-rw-r--r--wic/core-image-tiny.wks.in14
-rw-r--r--wic/generic-bootdisk.wks.in6
-rw-r--r--wic/grub-bootdisk-microcode.wks.in12
-rw-r--r--wic/image-installer.wks.in8
-rw-r--r--wic/systemd-bootdisk-microcode.wks.in13
5 files changed, 0 insertions, 53 deletions
diff --git a/wic/core-image-tiny.wks.in b/wic/core-image-tiny.wks.in
deleted file mode 100644
index b0decae6..00000000
--- a/wic/core-image-tiny.wks.in
+++ /dev/null
@@ -1,14 +0,0 @@
1# short-description: Create an EFI disk image with systemd-boot and corei7-64/core2-32
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# This disk image is meant to be used by corei7-64/core2-32 and core-image-tiny-initramfs
5
6part /boot --source bootimg-efi --sourceparams="loader=systemd-boot,initrd=core-image-tiny-initramfs-${MACHINE}.cpio.gz" --ondisk sda --label msdos --active --align 1024
7
8bootloader --ptable gpt --timeout=5 --append="init=/bin/busybox sh init console=ttyS0,115200 console=tty0 rw LABEL=boot debugshell=5"
9
10# Some devices require different console parameters, the console parameter can be given repeatedly, input is taken
11# only from the last listed console, for example on the Minnowboard MAX, the previously listed setting would show
12# a login prompt on its video output and not on the serial terminal.
13#
14# See http://www.tldp.org/HOWTO/Remote-Serial-Console-HOWTO/configure-kernel.html
diff --git a/wic/generic-bootdisk.wks.in b/wic/generic-bootdisk.wks.in
deleted file mode 100644
index 31c708bc..00000000
--- a/wic/generic-bootdisk.wks.in
+++ /dev/null
@@ -1,6 +0,0 @@
1# based off of refkit's refkit-directdisk.wks.in kickstart template
2# uses the image's boot directory to populate a vfat boot partition,
3# which works with EFI.
4bootloader --ptable gpt
5part /boot --source rootfs --rootfs-dir=${IMAGE_ROOTFS}/boot --fstype=vfat --label msdos --active --align 1024 --use-uuid
6part / --source rootfs --fstype=ext4 --label root --align 1024 --uuid ${DISK_SIGNATURE_UUID}
diff --git a/wic/grub-bootdisk-microcode.wks.in b/wic/grub-bootdisk-microcode.wks.in
deleted file mode 100644
index 7dc66f98..00000000
--- a/wic/grub-bootdisk-microcode.wks.in
+++ /dev/null
@@ -1,12 +0,0 @@
1# short-description: Create an EFI disk image with grub-efi
2# long-description: Creates a partitioned EFI disk image that the user
3# can directly dd to boot media. The selected bootloader is grub-efi.
4# It also includes intel-microcode as an initrd for early update support.
5
6part /boot --source bootimg-efi --sourceparams="loader=grub-efi,initrd=microcode.cpio" --ondisk sda --label msdos --active --align 1024 --use-uuid
7
8part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024 --use-uuid
9
10part swap --ondisk sda --size 44 --label swap1 --fstype=swap --use-uuid
11
12bootloader --ptable gpt --timeout=5 --append=" rootfstype=ext4 "
diff --git a/wic/image-installer.wks.in b/wic/image-installer.wks.in
deleted file mode 100644
index 933e8d85..00000000
--- a/wic/image-installer.wks.in
+++ /dev/null
@@ -1,8 +0,0 @@
1# create an installer disk image
2# populate content to install using IMAGE_BOOT_FILES
3
4part /boot --source bootimg-efi --sourceparams="loader=${EFI_PROVIDER},title=install,label=install-efi,initrd=microcode.cpio;${INITRD_IMAGE_LIVE}-${MACHINE}.${INITRAMFS_FSTYPES}" --ondisk sda --label install --active --align 1024 --use-uuid
5
6part / --source bootimg-partition --ondisk sda --fstype=ext4 --label image --use-uuid --align 1024
7
8bootloader --ptable gpt --timeout=5 --append=" rootwait "
diff --git a/wic/systemd-bootdisk-microcode.wks.in b/wic/systemd-bootdisk-microcode.wks.in
deleted file mode 100644
index 925c1fa3..00000000
--- a/wic/systemd-bootdisk-microcode.wks.in
+++ /dev/null
@@ -1,13 +0,0 @@
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=" rootfstype=ext4 "