--- alx-src/trunk/alxinstall-ng/bin/alxinstall-ng.sh.in 2015/07/29 08:20:41 6958 +++ alx-src/trunk/alxinstall-ng/bin/alxinstall-ng.sh.in 2015/07/29 09:30:23 6959 @@ -461,6 +461,16 @@ export GRUB2GFXPAYLOAD="keep" fi + # requires nomsi to prevent massive IRQ error spam + # see: http://ubuntuforums.org/showthread.php?t=1234983 + if [[ ! -z $(echo "${hwinfo}" | grep -i 'ASUS P5VD2-X') ]] || + [[ ! -z $(echo "${hwinfo}" | grep -i 'VT8237') ]] || + [[ ! -z $(echo "${hwinfo}" | grep -i 'VX700') ]] + then + export SPECIALDEVICE="P5VD2-X/VT8237/VX700" + export KERNELOPTS="${KERNELOPTS} pci=nomsi,noaer" + fi + # check for special devices/clients: # check for laptops and activate cpufreq scaling if [[ $(echo "${hwinfo}" | grep 'Formfactor:' | sed 's:.*Formfactor\:\ \"\(.*\)\":\1:') = laptop ]]