SMBIOS: move serial number and version out to Kconf
With this change it is possible to define serial number and version of the mainboard. These informations are used in SMBIOS tables. Change-Id: I1634882270f6cb94e00aceb7832e7fd14adc186b Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com> Reviewed-on: http://review.coreboot.org/1163 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
committed by
Patrick Georgi
parent
9b4c92ad80
commit
a645abbf54
@@ -173,8 +173,8 @@ static int smbios_write_type1(unsigned long *current, int handle)
|
||||
t->length = len - 2;
|
||||
t->manufacturer = smbios_add_string(t->eos, CONFIG_MAINBOARD_VENDOR);
|
||||
t->product_name = smbios_add_string(t->eos, CONFIG_MAINBOARD_PART_NUMBER);
|
||||
t->serial_number = smbios_add_string(t->eos, "123456789");
|
||||
t->version = smbios_add_string(t->eos, "1.0");
|
||||
t->serial_number = smbios_add_string(t->eos, CONFIG_MAINBOARD_SERIAL_NUMBER);
|
||||
t->version = smbios_add_string(t->eos, CONFIG_MAINBOARD_VERSION);
|
||||
len = t->length + smbios_string_table_len(t->eos);
|
||||
*current += len;
|
||||
return len;
|
||||
|
Reference in New Issue
Block a user