--- trunk/installer-simple/bin/installer.sh.in 2014/01/07 14:46:13 2441 +++ trunk/installer-simple/bin/installer.sh.in 2014/01/07 14:48:42 2442 @@ -628,15 +628,18 @@ # install network config skeleton install -m0644 ${INSTALLROOT}/etc/alxconfig-ng/skel/net/net.eth0 ${INSTALLROOT}/etc/conf.d/ || dialog_die - # intel framebufer quirk - if [[ -e /proc/fb ]] + # intel framebuffer quirk + if [ -e ${INSTALLROOT}/etc/splash/splash.conf ] then - if [[ ! -z $(grep 'inteldrmfb' /proc/fb) ]] + if [ -e /proc/fb ] then - fbdev=$(grep 'inteldrmfb' /proc/fb | sed 's:\([0-9]\).*:\1:') - if [[ ${fbdev} != 0 ]] + if [[ ! -z $(grep 'inteldrmfb' /proc/fb) ]] then - sed -i "s:^\(SPLASH_DEV=\).*:\1\"/dev/fb${fbdev}\":" ${INSTALLROOT}/etc/splash/splash.conf || dialog_die + fbdev=$(grep 'inteldrmfb' /proc/fb | sed 's:\([0-9]\).*:\1:') + if [[ ${fbdev} != 0 ]] + then + sed -i "s:^\(SPLASH_DEV=\).*:\1\"/dev/fb${fbdev}\":" ${INSTALLROOT}/etc/splash/splash.conf || dialog_die + fi fi fi fi