Magellan Linux

Diff of /trunk/installer/include/hwdetection.sh

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

revision 1064 by niro, Sun May 30 18:37:54 2010 UTC revision 1065 by niro, Mon May 31 22:03:51 2010 UTC
# Line 283  create_initrd() Line 283  create_initrd()
283  # http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=Documentation/fb/uvesafb.txt  # http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=Documentation/fb/uvesafb.txt
284  #  #
285  EOF  EOF
286   # default config 1024x768 and 60 HZ   # fix a issues with virtualbox and 'ywrap'
287   echo "options uvesafb mode_option=1024x768-32@60 scroll=ywrap" >> ${uvesafb_config}   if [[ ! -z $(hwinfo --bios | grep -i virtualbox) ]]
288     then
289     # use redraw on virtualbox
290     echo "options uvesafb mode_option=1024x768-32@60 scroll=redraw" >> ${uvesafb_config}
291     else
292     # default config 1024x768 and 60 HZ
293     echo "options uvesafb mode_option=1024x768-32@60 scroll=ywrap" >> ${uvesafb_config}
294     fi
295   fi   fi
296    
297   # remove all duplicate modules   # remove all duplicate modules

Legend:
Removed from v.1064  
changed lines
  Added in v.1065