svn commit: r285794 - head/sys/dev/vt

Conrad E. Meyer cem at FreeBSD.org
Wed Jul 22 15:30:11 UTC 2015


Author: cem
Date: Wed Jul 22 15:30:10 2015
New Revision: 285794
URL: https://svnweb.freebsd.org/changeset/base/285794

Log:
  vt: Unbreak build on no-splash configurations
  
  PR:		201751
  Differential Revision:	https://reviews.freebsd.org/D3151
  Tested by:	Andrey Fesenko
  Approved by:	markj (mentor)
  MFC after:	1 week

Modified:
  head/sys/dev/vt/vt_core.c

Modified: head/sys/dev/vt/vt_core.c
==============================================================================
--- head/sys/dev/vt/vt_core.c	Wed Jul 22 15:05:45 2015	(r285793)
+++ head/sys/dev/vt/vt_core.c	Wed Jul 22 15:30:10 2015	(r285794)
@@ -154,6 +154,10 @@ extern unsigned int vt_logo_width;
 extern unsigned int vt_logo_height;
 extern unsigned int vt_logo_depth;
 extern unsigned char vt_logo_image[];
+#ifndef DEV_SPLASH
+#define vtterm_draw_cpu_logos(...)
+const unsigned int vt_logo_sprite_height;
+#endif
 
 /* Font. */
 extern struct vt_font vt_font_default;


More information about the svn-src-head mailing list