Magellan Linux

Diff of /mcore-src/trunk/mcore-tools/src/modules/basic-video/graphic.client.class.in

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

revision 2268 by niro, Fri Jan 10 14:41:09 2014 UTC revision 2269 by niro, Tue Jan 14 10:34:57 2014 UTC
# Line 98  help_graphic_driver() Line 98  help_graphic_driver()
98  # set_graphic_resolution ${value}  # set_graphic_resolution ${value}
99  set_graphic_resolution()  set_graphic_resolution()
100  {  {
101   local resolution="$1"   local resolution="${CLASS_ARGV[0]}"
102   local CONFIG   local CONFIG
103   local depth   local depth
104   [[ -z ${resolution} ]] && help_graphic_resolution && return 1   [[ -z ${resolution} ]] && help_graphic_resolution && return 1
# Line 126  set_graphic_resolution() Line 126  set_graphic_resolution()
126  # set_graphic_depth ${value}  # set_graphic_depth ${value}
127  set_graphic_depth()  set_graphic_depth()
128  {  {
129   local depth="$1"   local depth="${CLASS_ARGV[0]}"
130   local CONFIG   local CONFIG
131   [[ -z ${depth} ]] && help_graphic_depth && return 1   [[ -z ${depth} ]] && help_graphic_depth && return 1
132    
# Line 150  set_graphic_depth() Line 150  set_graphic_depth()
150  # set_graphic_refresh ${value}  # set_graphic_refresh ${value}
151  set_graphic_refresh()  set_graphic_refresh()
152  {  {
153   local value="$1"   local value="${CLASS_ARGV[0]}"
154   [[ -z ${value} ]] && help_graphic_refresh && return 1   [[ -z ${value} ]] && help_graphic_refresh && return 1
155    
156   #echo "${value}" > ${MROOT}/${MCORE_CONFIG_PATH}/xorg/refresh   #echo "${value}" > ${MROOT}/${MCORE_CONFIG_PATH}/xorg/refresh
# Line 165  set_graphic_refresh() Line 165  set_graphic_refresh()
165    
166  set_graphic_driver()  set_graphic_driver()
167  {  {
168   local driver="$1"   local driver="${CLASS_ARGV[0]}"
169   local driverdir="@@LIBDIR@@/xorg/modules/drivers"   local driverdir="@@LIBDIR@@/xorg/modules/drivers"
170   local CONFIG   local CONFIG
171   [[ -z ${driver} ]] && help_graphic_driver && return 1   [[ -z ${driver} ]] && help_graphic_driver && return 1
# Line 189  set_graphic_driver() Line 189  set_graphic_driver()
189    
190  get_graphic_driver()  get_graphic_driver()
191  {  {
192   local action="$1"   local action="${CLASS_ARGV[0]}"
193   local driverdir="@@LIBDIR@@/xorg/modules/drivers"   local driverdir="@@LIBDIR@@/xorg/modules/drivers"
194   local driver   local driver
195   local config="${MCORE_CONFIG_PATH}/xorg/device/25-device.conf"   local config="${MCORE_CONFIG_PATH}/xorg/device/25-device.conf"

Legend:
Removed from v.2268  
changed lines
  Added in v.2269