aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2021-05-10 08:54:20 +0200
committerGravatar Christian Hesse <mail@eworm.de>2021-05-10 08:54:20 +0200
commit4dc73b94d29d85c59dc538bc2615ab5fdca7c937 (patch)
tree8ffc6c9d4d3a7d3b5b62b07460b522175fbd2264
parent156870d3c55c678a3c8d416fb2528313d2bf654e (diff)
downloadmkinitcpio-ykfde-4dc73b94d29d85c59dc538bc2615ab5fdca7c937.tar.gz
mkinitcpio-ykfde-4dc73b94d29d85c59dc538bc2615ab5fdca7c937.tar.zst
also give a basic example with systemd-boot
Fixes #34
-rw-r--r--README-dracut.md12
-rw-r--r--README-mkinitcpio.md12
2 files changed, 24 insertions, 0 deletions
diff --git a/README-dracut.md b/README-dracut.md
index 1428fcc..2d3a7a8 100644
--- a/README-dracut.md
+++ b/README-dracut.md
@@ -136,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!
diff --git a/README-mkinitcpio.md b/README-mkinitcpio.md
index fa00d07..31a3047 100644
--- a/README-mkinitcpio.md
+++ b/README-mkinitcpio.md
@@ -140,4 +140,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!