svn commit: r327484 - head/sys/powerpc/ps3

Nathan Whitehorn nwhitehorn at FreeBSD.org
Tue Jan 2 03:59:48 UTC 2018


Author: nwhitehorn
Date: Tue Jan  2 03:59:46 2018
New Revision: 327484
URL: https://svnweb.freebsd.org/changeset/base/327484

Log:
  Fix reversed endianness that crept in at some point. Blue is now blue
  instead of pink.
  
  MFC after:	3 days

Modified:
  head/sys/powerpc/ps3/ps3_syscons.c

Modified: head/sys/powerpc/ps3/ps3_syscons.c
==============================================================================
--- head/sys/powerpc/ps3/ps3_syscons.c	Tue Jan  2 01:48:11 2018	(r327483)
+++ head/sys/powerpc/ps3/ps3_syscons.c	Tue Jan  2 03:59:46 2018	(r327484)
@@ -229,7 +229,7 @@ ps3fb_init(struct vt_device *vd)
 
 	/* 32-bit VGA palette */
 	vt_generate_cons_palette(sc->fb_info.fb_cmap, COLOR_FORMAT_RGB,
-	    255, 0, 255, 8, 255, 16);
+	    255, 16, 255, 8, 255, 0);
 
 	/* Set correct graphics context */
 	lv1_gpu_context_attribute(sc->sc_fbcontext,


More information about the svn-src-head mailing list