--- alx-src/trunk/alxinstall-ng/bin/alxinstall-ng.sh.in 2012/03/28 09:50:05 3373 +++ alx-src/trunk/alxinstall-ng/bin/alxinstall-ng.sh.in 2012/03/28 09:54:00 3374 @@ -826,6 +826,19 @@ # install network config skeleton install -m0644 ${INSTALLPATH}/etc/alxconfig-ng/skel/net/net.eth0 ${INSTALLPATH}/etc/conf.d/ || die + + # intel framebufer quirk + if [[ -e /proc/fb ]] + then + if [[ ! -z $(grep 'inteldrmfb' /proc/fb) ]] + then + fbdev=$(grep 'inteldrmfb' /proc/fb | sed 's:\([0-9]\).*:\1:') + if [[ ${fbdev} != 0 ]] + then + sed -i "s:^\(SPLASH_OPTS=\).*:\1\"-d /dev/fb${fbdev}\":" ${INSTALLPATH}/etc/splash/splash.conf || die + fi + fi + fi } install_system_settings_flash()