Skip to content

Instantly share code, notes, and snippets.

@natsumerinchan
Last active February 24, 2023 09:38
Show Gist options
  • Save natsumerinchan/95140678fc8aa22ff73ab01aa16491cc to your computer and use it in GitHub Desktop.
Save natsumerinchan/95140678fc8aa22ff73ab01aa16491cc to your computer and use it in GitHub Desktop.
Boot BlissOS on Intel GPU && NVIDIA GPU devices

Modify /etc/grub.d/40_custom

sudo nano /etc/grub.d/40_custom 

Add these lines.

menuentry 'Bliss OS' {
set android=/bliss
insmod all_video 
search --set=root --file $android/kernel 
linux $android/kernel root=/dev/ram0 SRC=$android DATA/data GPU_OVERRIDE=card0 nouveau.modeset=0
initrd $android/initrd.img
}

Update grub

sudo grub-mkconfig -o /boot/grub/grub.cfg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment