diff --git a/ingredients/core-bootloader-grub.cfg b/ingredients/core-bootloader-grub.cfg new file mode 100644 index 0000000..90967f6 --- /dev/null +++ b/ingredients/core-bootloader-grub.cfg @@ -0,0 +1,10 @@ +# __ ____ ____ _____ +# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/ +# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \ +# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ / +# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/ +# /_/ /____/ + +# What ? This kickstart ingredient provides GNU GRUB + +bootloader --timeout=1 # Set the GNU GRUB bootloader timeout to 1 \ No newline at end of file diff --git a/ingredients/core-bootloader-systemd-boot.cfg b/ingredients/core-bootloader-systemd-boot.cfg new file mode 100644 index 0000000..085f098 --- /dev/null +++ b/ingredients/core-bootloader-systemd-boot.cfg @@ -0,0 +1,10 @@ +# __ ____ ____ _____ +# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/ +# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \ +# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ / +# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/ +# /_/ /____/ + +# What ? This kickstart ingredient provides systemd-boot, as an alternative to GNU GRUB + +bootloader --sdboot --timeout=1 # Use systemd-boot and set a timeout to 1 diff --git a/ingredients/core-storage.cfg b/ingredients/core-storage.cfg index b4312d7..cca4d5f 100644 --- a/ingredients/core-storage.cfg +++ b/ingredients/core-storage.cfg @@ -9,7 +9,6 @@ zerombr # WARNING : Dangerous command ! Will clear the Master Boot Record clearpart --all --initlabel # Partition clearing information. This setup uses GPT by default. -bootloader --timeout=1 # Set the GNU GRUB bootloader timeout to 1 part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi # Will create an EFI system partitition of 128 MiB (vda1) part /boot --fstype="ext4" --size=512 --label=boot # Create a boot partition of 512 MiB using the ext4 filesystem (vda2)