Magellan Linux

Diff of /alx-src/trunk/alxinstall-ng/bin/alxinstall-ng.sh.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3373 by niro, Wed Mar 28 09:50:05 2012 UTC revision 3374 by niro, Wed Mar 28 09:54:00 2012 UTC
# Line 826  install_system_settings() Line 826  install_system_settings()
826    
827   # install network config skeleton   # install network config skeleton
828   install -m0644 ${INSTALLPATH}/etc/alxconfig-ng/skel/net/net.eth0 ${INSTALLPATH}/etc/conf.d/ || die   install -m0644 ${INSTALLPATH}/etc/alxconfig-ng/skel/net/net.eth0 ${INSTALLPATH}/etc/conf.d/ || die
829    
830     # intel framebufer quirk
831     if [[ -e /proc/fb ]]
832     then
833     if [[ ! -z $(grep 'inteldrmfb' /proc/fb) ]]
834     then
835     fbdev=$(grep 'inteldrmfb' /proc/fb | sed 's:\([0-9]\).*:\1:')
836     if [[ ${fbdev} != 0 ]]
837     then
838     sed -i "s:^\(SPLASH_OPTS=\).*:\1\"-d /dev/fb${fbdev}\":" ${INSTALLPATH}/etc/splash/splash.conf || die
839     fi
840     fi
841     fi
842  }  }
843    
844  install_system_settings_flash()  install_system_settings_flash()

Legend:
Removed from v.3373  
changed lines
  Added in v.3374