diff options
author | Christian Hesse <mail@eworm.de> | 2021-05-10 08:54:20 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2021-05-10 08:54:20 +0200 |
commit | 4dc73b94d29d85c59dc538bc2615ab5fdca7c937 (patch) | |
tree | 8ffc6c9d4d3a7d3b5b62b07460b522175fbd2264 /README-mkinitcpio.md | |
parent | 156870d3c55c678a3c8d416fb2528313d2bf654e (diff) | |
download | mkinitcpio-ykfde-4dc73b94d29d85c59dc538bc2615ab5fdca7c937.tar.gz mkinitcpio-ykfde-4dc73b94d29d85c59dc538bc2615ab5fdca7c937.tar.zst |
also give a basic example with systemd-boot
Fixes #34
Diffstat (limited to 'README-mkinitcpio.md')
-rw-r--r-- | README-mkinitcpio.md | 12 |
1 files changed, 12 insertions, 0 deletions
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! |