Skip to content

Commit

Permalink
Add splash screen to mkinitcpio (#222)
Browse files Browse the repository at this point in the history
* Add splash screen to mkinitcpio
Because why not :)

* Add splash screen to mkinitcpio
Because why not :)

* Address mdl feedback
  • Loading branch information
Antiz96 authored Jun 11, 2024
1 parent 1f4e69e commit 58a4f10
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Arch-Linux/Base_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,19 @@ visudo #Uncomment the line that allows the wheel group members to use sudo on an
> %wheel ALL=(ALL) ALL
> [...]
### Enable Splash Screen in mkinitcpio (optional)

This allows to show an Arch Linux logo during the loading of the initramfs by the kernel.
This is purely aesthetic, but it also helps identifying when you're booting/loading the "regular" initramfs or the fallback one (as we'll only enable the splash screen for the "regular" initramfs).

```bash
vim /etc/mkinitcpio.d/linux.preset
```

> [...]
> default_options="--splash /usr/share/systemd/bootctl/splash-arch.bmp" # Uncomment that line
> [...]
### Use a more secure umask for the boot partition

This is to avoid warning with `bootctl install` in the next step.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,19 @@ visudo #Uncomment the line that allows the wheel group members to use sudo on an
> %wheel ALL=(ALL) ALL
> [...]
### Enable Splash Screen in mkinitcpio (optional)

This allows to show an Arch Linux logo during the loading of the initramfs by the kernel.
This is purely aesthetic, but it also helps identifying when you're booting/loading the "regular" initramfs or the fallback one (as we'll only enable the splash screen for the "regular" initramfs).

```bash
vim /etc/mkinitcpio.d/linux.preset
```

> [...]
> default_options="--splash /usr/share/systemd/bootctl/splash-arch.bmp" # Uncomment that line
> [...]
### Configure the encrypt hook in mkinitcpio

```bash
Expand Down

0 comments on commit 58a4f10

Please sign in to comment.