|
From: Bruce S. <bl...@us...> - 2008-05-01 14:35:05
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv17710/scripts Modified Files: build-iso Log Message: added 1280x1024 & 1600x1200 options to boot menu changed default boot mode on server release to 1024x768 Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.79 retrieving revision 1.80 diff -u -d -r1.79 -r1.80 --- build-iso 30 Apr 2008 15:47:30 -0000 1.79 +++ build-iso 1 May 2008 14:35:00 -0000 1.80 @@ -266,22 +266,24 @@ declare -a BOOT_OPTIONS_MODE declare -a BOOT_OPTIONS_KERNEL_MODE BOOT_OPTIONS_TEXT=( "0 - Standard 80x25 text mode" - "1 - 640x480 VESA Frame Buffer" - "2 - 800x600 VESA Frame Buffer" - "3 - 1024x768 VESA Frame Buffer" - "4 - Other" ) - BOOT_OPTIONS_MODE=( "80x25" "640x480" "800x600" "1024x768" "ask" ) - BOOT_OPTIONS_KERNEL_MODE=( "NORMAL_VGA" "769" "771" "773" "ask" ) + "1 - 640x480 VESA Frame Buffer" + "2 - 800x600 VESA Frame Buffer" + "3 - 1024x768 VESA Frame Buffer" + "4 - 1280x1024 VESA Frame Buffer" + "5 - 1600x1200 VESA Frame Buffer" + "6 - Other" ) + BOOT_OPTIONS_MODE=( "80x25" "640x480" "800x600" "1024x768" "1280x1024" "1600x1200" "ask" ) + BOOT_OPTIONS_KERNEL_MODE=( "NORMAL_VGA" "769" "771" "773" "775" "796" "ask" ) BOOT_OPTION_DEFAULT=0 # vga=xxx sets the framebuffer console to a specific resolution. # Here is a table you can use so it can help you decide # what resolution you want to use: - # colour depth | 640x480 800x600 1024x768 1280x1024 - # 256 (8bit) | 769 771 773 775 - # 32000 (15bit) | 784 787 790 793 - # 65000 (16bit) | 785 788 791 794 - # 16.7 Mill. (24bit) | 786 789 792 795 - + # Colors ( depth) 640x480 800x600 1024x768 1280x1024 1600x1200 + # ---------------+-------+-------+--------+---------+--------- + # 256 ( 8 bit)| 769 771 773 775 796 + # 32,768 (15 bit)| 784 787 790 793 797 + # 65,536 (16 bit)| 785 788 791 794 798 + # 16.8M (24 bit)| 786 789 792 795 799 i=0 while [ $i -lt ${#BOOT_OPTIONS_TEXT[@]} ] |