1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

bhyve: update smbiostbl.c to bump the version and release date

Since lots of work has been done on bhyve since 2014, increase the version
to 13.0 to match 13-CURRENT, and update the release date.

Reviewed by:	grehan
Differential Revision:	https://reviews.freebsd.org/D27147
This commit is contained in:
Rebecca Cran 2020-11-13 19:47:16 +00:00
parent 9b9bb9ffa5
commit a2fe464c81
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=367651

View File

@ -51,6 +51,9 @@ __FBSDID("$FreeBSD$");
#define SMBIOS_BASE 0xF1000
#define FIRMWARE_VERSION "13.0"
#define FIRMWARE_RELEASE_DATE "11/10/2020"
/* BHYVE_ACPI_BASE - SMBIOS_BASE) */
#define SMBIOS_MAX_LENGTH (0xF2400 - 0xF1000)
@ -323,9 +326,9 @@ struct smbios_table_type0 smbios_type0_template = {
};
const char *smbios_type0_strings[] = {
"BHYVE", /* vendor string */
"1.00", /* bios version string */
"03/14/2014", /* bios release date string */
"BHYVE", /* vendor string */
FIRMWARE_VERSION, /* bios version string */
FIRMWARE_RELEASE_DATE, /* bios release date string */
NULL
};