Index: boot/genarch/ofw.c
===================================================================
--- boot/genarch/ofw.c	(revision 2b1f8608eb11a5a5a4ef29c4d03641eff9b079ac)
+++ boot/genarch/ofw.c	(revision 10ea0ca4d5ec3825fdc004c55fec45a6641c4a4a)
@@ -299,5 +299,4 @@
 	unsigned int sc = ofw_get_size_cells(ofw_memory) /
 	    (sizeof(uintptr_t) / sizeof(uint32_t));
-	printf("address cells: %d, size cells: %d. ", ac, sc);
 
 	uintptr_t buf[((ac + sc) * MEMMAP_MAX_RECORDS)];
@@ -406,9 +405,9 @@
 		return false;
 
-	/* setup the palette so that the 3:2:3 scheme is usable */
+	/* setup the palette so that the (inverted) 3:2:3 scheme is usable */
 	unsigned int i;
 	for (i = 0; i < 256; i++)
 		if (ofw_call("call-method", 6, 1, NULL, "color!", screen,
-			i,
+			255 - i,
 			i << 5,
 			(i >> 3) << 6,
