Last active
August 8, 2017 19:44
-
-
Save kusayuzayushko/aa2d426c13e710331f259145bb12218d to your computer and use it in GitHub Desktop.
Custom menuentrys for SimpleminingOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
exec tail -n +3 $0 | |
# This file provides an easy way to add custom menu entries. Simply type the | |
# menu entries you want to add after this comment. Be careful not to change | |
# the 'exec tail' line above. | |
menuentry 'pci=nomsi 12+GPU motherboards' { | |
recordfail | |
load_video | |
insmod ext2 | |
set root='(hd0,msdos2)' | |
linux /vmlinuz root=/dev/sda2 ro net.ifnames=0 biosdevname=0 pci=nomsi | |
initrd /initrd.img | |
} | |
menuentry 'pci=noaer 12+GPU motherboards' { | |
recordfail | |
load_video | |
insmod ext2 | |
set root='(hd0,msdos2)' | |
linux /vmlinuz root=/dev/sda2 ro net.ifnames=0 biosdevname=0 pci=noaer | |
initrd /initrd.img | |
} | |
menuentry 'enableexe=0 ips=0 Z170 chipsets' { | |
recordfail | |
load_video | |
insmod ext2 | |
set root='(hd0,msdos2)' | |
linux /vmlinuz root=/dev/sda2 ro net.ifnames=0 biosdevname=0 enableexe=0 ips=0 | |
initrd /initrd.img | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment