fix-kernel-install.bash: pass the -v flag to kernel-install

This commit is contained in:
Aminda Suomalainen 2024-07-28 07:48:36 +03:00
parent 6046dfbb4c
commit 530467d73c
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q

View File

@ -28,14 +28,14 @@ if [ -f /etc/machine-id ]; then
else else
printf "\nWARNING! Kernels mismatch! Suggested actions:\n" printf "\nWARNING! Kernels mismatch! Suggested actions:\n"
printf "\tsudo mkdir /boot/%b/%b\n" "$MACHINEID" "$EXPECTEDKERNEL" printf "\tsudo mkdir /boot/%b/%b\n" "$MACHINEID" "$EXPECTEDKERNEL"
printf "\tsudo kernel-install add %b /lib/modules/%b/vmlinuz\n" "$EXPECTEDKERNEL" "$EXPECTEDKERNEL" printf "\tsudo kernel-install -v add %b /lib/modules/%b/vmlinuz\n" "$EXPECTEDKERNEL" "$EXPECTEDKERNEL"
#printf "\tsudo dnf reinstall kernel-core-%b -y\n" "$EXPECTEDKERNEL" #printf "\tsudo dnf reinstall kernel-core-%b -y\n" "$EXPECTEDKERNEL"
printf "Please note that Lumina and Sedric have moved to UKI.\n" printf "Please note that Lumina and Sedric have moved to UKI.\n"
fi fi
fi fi
fi fi
echo "New kernel? Just in case, try sudo kernel-install add $(uname -r) # although using the actual new kernel version" echo "New kernel? Just in case, try sudo kernel-install -v add $(uname -r) # although using the actual new kernel version"
echo "Alternatively sudo kernel-install add-all" echo "Alternatively sudo kernel-install -v add-all"
#set +x #set +x