svn commit: r247374 - projects/uefi/sys/conf

Benno Rice benno at FreeBSD.org
Wed Feb 27 04:35:12 UTC 2013


Author: benno
Date: Wed Feb 27 04:35:12 2013
New Revision: 247374
URL: http://svnweb.freebsd.org/changeset/base/247374

Log:
  Remove static from font declaration so we can use it in the EFI framebuffer.

Modified:
  projects/uefi/sys/conf/files.amd64

Modified: projects/uefi/sys/conf/files.amd64
==============================================================================
--- projects/uefi/sys/conf/files.amd64	Wed Feb 27 04:33:07 2013	(r247373)
+++ projects/uefi/sys/conf/files.amd64	Wed Feb 27 04:35:12 2013	(r247374)
@@ -33,7 +33,7 @@ ia32_assym.h			standard				\
 	clean		"ia32_assym.h"
 #
 font.h				optional	sc_dflt_font 		\
-	compile-with	"uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x16.fnt && file2c 'static u_char dflt_font_16[16*256] = {' '};' < ${SC_DFLT_FONT}-8x16 > font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x14.fnt && file2c 'static u_char dflt_font_14[14*256] = {' '};' < ${SC_DFLT_FONT}-8x14 >> font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x8.fnt && file2c 'static u_char dflt_font_8[8*256] = {' '};' < ${SC_DFLT_FONT}-8x8 >> font.h"									\
+	compile-with	"uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x16.fnt && file2c 'u_char dflt_font_16[16*256] = {' '};' < ${SC_DFLT_FONT}-8x16 > font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x14.fnt && file2c 'u_char dflt_font_14[14*256] = {' '};' < ${SC_DFLT_FONT}-8x14 >> font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x8.fnt && file2c 'u_char dflt_font_8[8*256] = {' '};' < ${SC_DFLT_FONT}-8x8 >> font.h"									\
 	no-obj no-implicit-rule before-depend				\
 	clean		"font.h ${SC_DFLT_FONT}-8x14 ${SC_DFLT_FONT}-8x16 ${SC_DFLT_FONT}-8x8"
 #


More information about the svn-src-projects mailing list