Index: kernel/arch/sparc64/src/drivers/scr.c
===================================================================
--- kernel/arch/sparc64/src/drivers/scr.c	(revision 965dc18d04fb8a15431d34485959f4aa8e6ec4b5)
+++ kernel/arch/sparc64/src/drivers/scr.c	(revision 4406fd65127ba62f1155ae575c2e0cd6ec5fc1ce)
@@ -79,4 +79,5 @@
 	
 	uintptr_t fb_addr;
+	unsigned int fb_offset = 0;
 	uint32_t fb_width = 0;
 	uint32_t fb_height = 0;
@@ -168,8 +169,10 @@
 		}
 
+		fb_offset = 4 * 0x2000;
+
 		switch (fb_depth) {
 		case 8:
 			fb_scanline = fb_linebytes * (fb_depth >> 3);
-			visual = VISUAL_SB1500_PALETTE;
+			visual = VISUAL_INDIRECT_8;
 			break;
 		case 16:
@@ -226,5 +229,5 @@
 	fb_properties_t props = {
 		.addr = fb_addr,
-		.offset = 0,
+		.offset = fb_offset,
 		.x = fb_width,
 		.y = fb_height,
