From a645abbf54f965e596c58e8eb2c84d733e19b737 Mon Sep 17 00:00:00 2001 From: Christian Gmeiner Date: Tue, 3 Jul 2012 10:11:51 +0200 Subject: 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 Reviewed-on: http://review.coreboot.org/1163 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/arch/x86/boot/smbios.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/arch/x86/boot/smbios.c') diff --git a/src/arch/x86/boot/smbios.c b/src/arch/x86/boot/smbios.c index f39bf04b3b..3b9e5a1327 100644 --- a/src/arch/x86/boot/smbios.c +++ b/src/arch/x86/boot/smbios.c @@ -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; -- cgit v1.2.3