diff options
| author | Rebecca Cran <bcran@FreeBSD.org> | 2020-11-13 19:47:16 +0000 |
|---|---|---|
| committer | Rebecca Cran <bcran@FreeBSD.org> | 2020-11-13 19:47:16 +0000 |
| commit | a2fe464c81def82c2eec7af443cbe94a95b79d6c (patch) | |
| tree | 19288606bb9fe6abe7f289c393febc4d6f2ee7e4 /usr.sbin | |
| parent | 9b9bb9ffa5b644203df092652c7820b8dfd6a8d2 (diff) | |
Notes
Diffstat (limited to 'usr.sbin')
| -rw-r--r-- | usr.sbin/bhyve/smbiostbl.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.sbin/bhyve/smbiostbl.c b/usr.sbin/bhyve/smbiostbl.c index e09acd41570cf..4205da5949239 100644 --- a/usr.sbin/bhyve/smbiostbl.c +++ b/usr.sbin/bhyve/smbiostbl.c @@ -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 }; |
