Index: kernel/arch/mips32/src/mips32.c
===================================================================
--- kernel/arch/mips32/src/mips32.c	(revision bfce7d954add940561c1e2a8aefd67aa0a87cb83)
+++ kernel/arch/mips32/src/mips32.c	(revision 49093a4659920a809fa1a13c3dfad5e9587db768)
@@ -127,5 +127,13 @@
 #ifdef CONFIG_FB
 	/* GXemul framebuffer */
-	fb_init(0x12000000, 640, 480, 1920, VISUAL_RGB_8_8_8);
+	fb_properties_t gxemul_prop = {
+		.addr = 0x12000000,
+		.offset = 0,
+		.x = 640,
+		.y = 480,
+		.scan = 1920,
+		.visual = VISUAL_RGB_8_8_8,
+	};
+	fb_init(&gxemul_prop);
 #endif
 	sysinfo_set_item_val("machine." STRING(MACHINE), NULL, 1);
