aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsergio <sergiotarxz@posteo.net>2026-08-21 16:05:27 +0000
committersergio <sergiotarxz@posteo.net>2026-08-21 16:05:27 +0000
commit50fe9ebba2b3a43e312e96e3e33b9644e0a82ee6 (patch)
treef4cc559b5049aa1a7585c51f44b8bdf14815d5ea
parentc50dde45d796a4f998005ac147b09711152a361d (diff)
Preliminar splash everywhere
-rw-r--r--lib/AlgaOS/Installer/GUI.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/AlgaOS/Installer/GUI.pm b/lib/AlgaOS/Installer/GUI.pm
index 25698c2..164e42e 100644
--- a/lib/AlgaOS/Installer/GUI.pm
+++ b/lib/AlgaOS/Installer/GUI.pm
@@ -705,7 +705,7 @@ EOF
$kver =~ s{.*/kernel-}{};
say $fh <<"EOF";
menuentry "AlgaOS" --unrestricted {
- linux /boot/kernel-$kver root=PARTUUID=$devices{AlgaOSRoot}
+ linux /boot/kernel-$kver root=PARTUUID=$devices{AlgaOSRoot} splash quiet
initrd /boot/initramfs-$kver.img
};
EOF
@@ -716,12 +716,12 @@ EOF
$kver =~ s{.*/kernel-}{};
excfailexit qw{dracut --force --kver}, $kver,
- qw{--no-hostonly --stdlog 6 --force --add dmsquash-live},
+ qw{--no-hostonly --stdlog 6 --force --add}, "plymouth dmsquash-live",
"/boot/recovery/initramfs-${kver}.img";
say $fh <<"EOF";
menuentry "AlgaOS Recovery" --users admin {
- linux /boot/recovery/kernel-$kver root=live:PARTUUID=$devices{AlgaOSRecovery} rd.live.dir=/ rd.live.squashimg=rootfs.squashfs rd.live.overlay.overlayfs=1 rd.live.debug=1 rd.systemd.show_status=1 rd.systemd.log_level=debug
+ linux /boot/recovery/kernel-$kver root=live:PARTUUID=$devices{AlgaOSRecovery} rd.live.dir=/ rd.live.squashimg=rootfs.squashfs rd.live.overlay.overlayfs=1 rd.live.debug=1 rd.systemd.show_status=1 rd.systemd.log_level=debug splash quiet
initrd /boot/recovery/initramfs-$kver.img
};
EOF