aboutsummaryrefslogtreecommitdiffstats
path: root/README-dracut.md
diff options
context:
space:
mode:
Diffstat (limited to 'README-dracut.md')
-rw-r--r--README-dracut.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/README-dracut.md b/README-dracut.md
index 108e2af..2d3a7a8 100644
--- a/README-dracut.md
+++ b/README-dracut.md
@@ -124,7 +124,8 @@ Build the initramfs:
### Boot loader
Make sure to load the cpio archive `/boot/ykfde-challenges.img`
-as an additional initramfs.
+as an additional initramfs. It has to be listed *after* microcode
+updates (if available), but *before* main initramfs.
With `grub` you need to list `ykfde-challenges.img` in configuration
variable `GRUB_EARLY_INITRD_LINUX_CUSTOM` in `/etc/default/grub`:
@@ -135,4 +136,16 @@ Then update your `grub` configuration by running:
> grub-mkconfig -o /boot/grub/grub.cfg
+A valid configuration for `systemd-boot` should be placed in
+`/boot/loader/entries/default.conf` and look something like this:
+
+```
+title Default
+linux /vmlinuz-linux
+initrd /intel-ucode.img
+initrd /ykfde-challenges.img
+initrd /initramfs-linux.img
+options root=... rw quiet
+```
+
Reboot and have fun!