svn commit: r257722 - user/ed/newcons/sys/dev/vt
Aleksandr Rybalko
ray at FreeBSD.org
Tue Nov 5 22:57:05 UTC 2013
Author: ray
Date: Tue Nov 5 22:57:05 2013
New Revision: 257722
URL: http://svnweb.freebsd.org/changeset/base/257722
Log:
Enable splash on Mute flag.
TODO: use tunable for control splash.
Sponsored by: The FreeBSD Foundation
Modified:
user/ed/newcons/sys/dev/vt/vt_core.c
Modified: user/ed/newcons/sys/dev/vt/vt_core.c
==============================================================================
--- user/ed/newcons/sys/dev/vt/vt_core.c Tue Nov 5 22:33:45 2013 (r257721)
+++ user/ed/newcons/sys/dev/vt/vt_core.c Tue Nov 5 22:57:05 2013 (r257722)
@@ -740,7 +740,7 @@ vtterm_splash(struct vt_device *vd)
vt_axis_t top, left;
/* Display a nice boot splash. */
- if (!(vd->vd_flags & VDF_TEXTMODE)) {
+ if (!(vd->vd_flags & VDF_TEXTMODE) && (boothowto & RB_MUTE)) {
top = (vd->vd_height - vt_logo_height) / 2;
left = (vd->vd_width - vt_logo_width) / 2;
More information about the svn-src-user
mailing list