Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Nov 2020 07:49:40 +0000 (UTC)
From:      Olivier Cochard <olivier@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r367478 - head/usr.sbin/bhyve
Message-ID:  <202011080749.0A87ne9N044148@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olivier (ports committer)
Date: Sun Nov  8 07:49:39 2020
New Revision: 367478
URL: https://svnweb.freebsd.org/changeset/base/367478

Log:
  Return the same value for smbios.chassis.maker as smbios.system.maker (and prevents returning a space character).
  
  Reviewed by:	grehan
  Approved by:	grehan
  Sponsored by:	Netflix
  Differential Revision:	https://reviews.freebsd.org/D27123

Modified:
  head/usr.sbin/bhyve/smbiostbl.c

Modified: head/usr.sbin/bhyve/smbiostbl.c
==============================================================================
--- head/usr.sbin/bhyve/smbiostbl.c	Sun Nov  8 04:24:29 2020	(r367477)
+++ head/usr.sbin/bhyve/smbiostbl.c	Sun Nov  8 07:49:39 2020	(r367478)
@@ -374,7 +374,7 @@ struct smbios_table_type3 smbios_type3_template = {
 };
 
 const char *smbios_type3_strings[] = {
-	" ",		/* manufacturer string */
+	"FreeBSD",	/* manufacturer string */
 	"1.0",		/* version string */
 	"None",		/* serial number string */
 	"None",		/* asset tag string */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011080749.0A87ne9N044148>