Magellan Linux

Diff of /alx-src/trunk/tinyalxconfig-ng/functions/config_driverkits.sh

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

revision 513 by niro, Sun Jun 8 10:05:01 2008 UTC revision 514 by niro, Thu Jun 19 12:36:13 2008 UTC
# Line 1  Line 1 
1  # $Header: /home/cvsd/alx-cvs/alx-src/tinyalxconfig-ng/functions/config_driverkits.sh,v 1.1 2008-06-08 10:02:24 niro Exp $  # $Header: /home/cvsd/alx-cvs/alx-src/tinyalxconfig-ng/functions/config_driverkits.sh,v 1.2 2008-06-19 12:36:13 niro Exp $
2  # installs neccessary driverkits at boot-time  # installs neccessary driverkits at boot-time
3    
4  config_driverkits()  config_driverkits()
# Line 24  config_driverkits() Line 24  config_driverkits()
24   mage install xf86-video-${cfg_graphic_module}-alx &> /dev/null   mage install xf86-video-${cfg_graphic_module}-alx &> /dev/null
25   mage clean &> /dev/null   mage clean &> /dev/null
26   fi   fi
27    
28     if [[ -z $(magequery -n xf86-input-keyboard-alx) ]]
29     then
30     echo -e ${COLMAGENTA}"Installing driver kit for 'keyboard' ..."${COLDEFAULT}
31     mage install xf86-input-keyboard-alx &> /dev/null
32     mage clean &> /dev/null
33     fi
34    
35     if [[ -z $(magequery -n xf86-input-mouse-alx) ]]
36     then
37     echo -e ${COLMAGENTA}"Installing driver kit for 'mouse' ..."${COLDEFAULT}
38     mage install xf86-input-mouse-alx &> /dev/null
39     mage clean &> /dev/null
40     fi
41  }  }

Legend:
Removed from v.513  
changed lines
  Added in v.514