diff options
| author | Sergio <sergiotarxz@posteo.net> | 2026-08-26 02:12:29 +0200 |
|---|---|---|
| committer | Sergio <sergiotarxz@posteo.net> | 2026-08-26 02:12:29 +0200 |
| commit | 8baa8640d5812a7f93bcd0d5da49735fea987e05 (patch) | |
| tree | 1ab885004b37285e603819097abb8ebb2befeaed | |
| parent | ce443c844cf625856b1a508e681366da2dad8fbc (diff) | |
Fixing dracut host generation
| -rw-r--r-- | lib/AlgaOS/Installer/GUI.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/AlgaOS/Installer/GUI.pm b/lib/AlgaOS/Installer/GUI.pm index 8d8fd77..ce482b5 100644 --- a/lib/AlgaOS/Installer/GUI.pm +++ b/lib/AlgaOS/Installer/GUI.pm @@ -711,14 +711,14 @@ password_pbkdf2 admin grub.pbkdf2.sha512.$hash_complete EOF excfailexit qw{emerge --sync}; - excfailexit qw{plymouth-set-default-theme colorful_loop}; + excfailexit qw{plymouth-set-default-theme -R colorful_loop}; for my $kver ( glob("/boot/kernel-*") ) { die "No kernel found in /boot\n" unless $kver; $kver =~ s{.*/kernel-}{}; say $fh <<"EOF"; excfailexit qw{dracut --force --kver}, $kver, - qw{--no-hostonly --stdlog 6 --force --add}, "plymouth dmsquash-live", + qw{--no-hostonly --stdlog 6 --add --}, "/boot/initramfs-${kver}.img"; menuentry "AlgaOS" --unrestricted { linux /boot/kernel-$kver root=PARTUUID=$devices{AlgaOSRoot} splash quiet @@ -731,7 +731,7 @@ EOF $kver =~ s{.*/kernel-}{}; excfailexit qw{dracut --force --kver}, $kver, - qw{--no-hostonly --stdlog 6 --force --add}, "plymouth dmsquash-live", + qw{--no-hostonly --stdlog 6 --add}, "dmsquash-live", qw{--}, "/boot/recovery/initramfs-${kver}.img"; say $fh <<"EOF"; |
