svn commit: r367478 - head/usr.sbin/bhyve
Olivier Cochard
olivier at FreeBSD.org
Sun Nov 8 07:49:40 UTC 2020
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 */
More information about the svn-src-all
mailing list