Magellan Linux

Diff of /alx-src/branches/alxconf-060/functions/config_x11.sh

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

revision 3276 by niro, Wed Jul 6 21:44:08 2011 UTC revision 3277 by niro, Wed Nov 2 13:53:14 2011 UTC
# Line 126  config_x11() Line 126  config_x11()
126   addconfig 'EndSection'   addconfig 'EndSection'
127    
128   # fixes   # fixes
129   # disable LVDS-1 on zotacs   # disable LVDS-1 on zotacs or enable it if hdmi was requested
130   if [[ ! -z $(hwinfo --bios --storage | grep -i zotac) ]]   if [[ $(alx-hwdetection system) = zotac ]]
131   then   then
132   CONFIG="/etc/X11/xorg.conf.d/30-fix-zotac.conf"   CONFIG="/etc/X11/xorg.conf.d/30-fix-zotac.conf"
133   clearconfig   clearconfig
134   addconfig 'Section "Monitor"'   addconfig 'Section "Monitor"'
135   addconfig ' Identifier "LVDS1"'   addconfig ' Identifier "LVDS1"'
136   addconfig ' Option "Ignore" "True"'   if [[ ${cfg_graphic_hdmi} = enable ]]
137     then
138     # add cvt modelines
139     addconfig
140     local cvt="/usr/bin/cvt"
141     local modeline
142     modeline=$("${cvt}" "${cfg_graphic_resolution%x*}" "${cfg_graphic_resolution#*x}" "${cfg_graphic_refresh_rate}" | sed -e 's:^:\t:g' -e 's:_.*\":\":')
143     addconfig "${modeline}"
144     else
145     addconfig ' Option "Ignore" "True"'
146     fi
147   addconfig 'EndSection'   addconfig 'EndSection'
148   else   else
149   # clear this file   # clear this file

Legend:
Removed from v.3276  
changed lines
  Added in v.3277