cleaned up. X86emu does not work with debug trace on currently.
This commit is contained in:
@@ -507,6 +507,7 @@ int fb_find_mode(struct fb_var_screeninfo *var,
|
||||
default_mode = &modedb[DEFAULT_MODEDB_INDEX];
|
||||
if (!default_bpp)
|
||||
default_bpp = 8;
|
||||
|
||||
/* Did the user specify a video mode? */
|
||||
if (resolution->used) /* fVDI mode */
|
||||
{
|
||||
|
||||
@@ -277,9 +277,18 @@ void videl_screen_init(void)
|
||||
static struct fb_info fb;
|
||||
struct fb_info *info_fb = &fb;
|
||||
|
||||
const char monitor_layout[1024];
|
||||
const char monitor_layout[1024] = "CRT,CRT";
|
||||
int16_t ignore_edid;
|
||||
struct mode_option resolution;
|
||||
|
||||
struct mode_option resolution =
|
||||
{
|
||||
.used = 0,
|
||||
.width = 640,
|
||||
.height = 480,
|
||||
.bpp = 8,
|
||||
.freq = 60,
|
||||
.flags = 0
|
||||
};
|
||||
int16_t force_measure_pll;
|
||||
|
||||
void install_vbl_timer(void *func, int remove)
|
||||
|
||||
Reference in New Issue
Block a user