diff options
author | Joursoir <chat@joursoir.net> | 2022-06-20 12:50:48 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2022-06-20 12:50:48 +0300 |
commit | ef9059a4e87acea0fc548e7c899c1d10675aa5e5 (patch) | |
tree | 88a92892538230026ecc44639587bc4d4db894e9 | |
parent | 0c35ee41e6fe8a1ac63f75559fb6936a87e2894e (diff) | |
download | dotfiles-ef9059a4e87acea0fc548e7c899c1d10675aa5e5.tar.gz dotfiles-ef9059a4e87acea0fc548e7c899c1d10675aa5e5.tar.bz2 dotfiles-ef9059a4e87acea0fc548e7c899c1d10675aa5e5.zip |
grub: delete 'nomodeset' option for kernel
-rw-r--r-- | grub/default/grub | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/grub/default/grub b/grub/default/grub index daf7dba..e624baa 100644 --- a/grub/default/grub +++ b/grub/default/grub @@ -22,7 +22,8 @@ GRUB_TERMINAL_INPUT="console" GRUB_CMDLINE_LINUX="" # Arguments to add only to the default menu entry (recovery menu will remain unchanged) for the Linux kernel -GRUB_CMDLINE_LINUX_DEFAULT="nomodeset quiet splash" +# AMDGPU [https://wiki.archlinux.org/title/AMDGPU#Loading]: "Make sure you do not have *nomodeset* or *vga=* as a kernel parameter, since amdgpu requires KMS." +GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" # Enable the generation of recovery mode menu entries GRUB_DISABLE_RECOVERY=false |