Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change BIOS from BHYVE to XHYVE to differentiate #118

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/smbiostbl.c
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ static struct smbios_table_type0 smbios_type0_template = {
};

static const char *smbios_type0_strings[] = {
"BHYVE", /* vendor string */
"XHYVE", /* vendor string */
"1.00", /* bios version string */
"03/14/2014", /* bios release date string */
NULL
Expand All @@ -344,7 +344,7 @@ static int smbios_type1_initializer(struct smbios_structure *template_entry,

static const char *smbios_type1_strings[] = {
" ", /* manufacturer string */
"BHYVE", /* product name string */
"XHYVE", /* product name string */
"1.0", /* version string */
"None", /* serial number string */
"None", /* sku string */
Expand Down