Displaying 1 result from an estimated 1 matches for "setup_vga".
Did you mean:
setup_uga
2007 Jan 11
0
[PATCH] set VGA console to 50 lines by default
...vgacon_keep = 1;
else if ( strncmp(p, "text-80x", 8) == 0 )
vgacon_lines = simple_strtoul(p + 8, NULL, 10);
+ else if ( strncmp(p, "text", 4) == 0 && p[4] != ''-'' )
+ vgacon_lines = 0;
}
video = setup_vga();
@@ -601,17 +603,18 @@ void vga_init(void)
case 34:
font = &font_vga_8x14;
break;
+ default:
+ vgacon_lines = 50;
case 43:
case 50:
case 60:
font = &font_vga_8x8;
break;
- default:
- vgacon_lines = 25;
+ case 0...