lenovo: Hide SMBIOS config

It's derived from EEPROM on Lenovo machines and not from user config
which is ignored.

Change-Id: I54fb76a3160e47cd36d33d2937c4bfaddcd36a69
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/7055
Tested-by: build bot (Jenkins)
Reviewed-by: Nicolas Reinecke <nr@das-labor.org>
This commit is contained in:
Vladimir Serbinenko
2015-05-30 23:08:26 +02:00
parent 1a1a826276
commit 0afdec4cdc
5 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
if VENDOR_LENOVO
config SMBIOS_PROVIDED_BY_MOBO
bool
default y
endif

View File

@@ -213,3 +213,8 @@ const char *smbios_mainboard_bios_version(void)
s = strconcat("CBET4000 ", coreboot_version);
return s;
}
const char *smbios_mainboard_manufacturer(void)
{
return "LENOVO";
}