smbios: add a family id in smbios type1 family
mosys will use this field to identify system
BRANCH=none
BUG=chromium:359155
TEST=build ok, use dmidecode to check whether data is
     written correctly
Change-Id: I461215c012b6ad712b3f813a3928e90a23bf54f1
Signed-off-by: Stefan Reinauer <reinauer@chromium.org>
Original-Commit-Id: 7adbdab761cd7b4bda0a43e7b1c4070de26f150a
Original-Change-Id: Icfbd4c61fc49a9cb3d3ecd2b622339957963150c
Original-Signed-off-by: Kane Chen <kane.chen@intel.com>
Original-Reviewed-on: https://chromium-review.googlesource.com/217400
Original-Reviewed-by: David Hendricks <dhendrix@chromium.org>
Original-Reviewed-by: Shawn Nematbakhsh <shawnn@chromium.org>
Reviewed-on: http://review.coreboot.org/9230
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
			
			
This commit is contained in:
		
				
					committed by
					
						 Patrick Georgi
						Patrick Georgi
					
				
			
			
				
	
			
			
			
						parent
						
							2b59a838b4
						
					
				
				
					commit
					51bdc47816
				
			| @@ -302,6 +302,13 @@ void __attribute__((weak)) smbios_mainboard_set_uuid(u8 *uuid) | ||||
| 	/* leave all zero */ | ||||
| } | ||||
|  | ||||
| #ifdef CONFIG_MAINBOARD_FAMILY | ||||
| const char *smbios_mainboard_family(void) | ||||
| { | ||||
| 	return CONFIG_MAINBOARD_FAMILY; | ||||
| } | ||||
| #endif /* CONFIG_MAINBOARD_FAMILY */ | ||||
|  | ||||
| static int smbios_write_type1(unsigned long *current, int handle) | ||||
| { | ||||
| 	struct smbios_type1 *t = (struct smbios_type1 *)*current; | ||||
| @@ -334,6 +341,9 @@ static int smbios_write_type2(unsigned long *current, int handle) | ||||
| 	t->product_name = smbios_add_string(t->eos, smbios_mainboard_product_name()); | ||||
| 	t->serial_number = smbios_add_string(t->eos, smbios_mainboard_serial_number()); | ||||
| 	t->version = smbios_add_string(t->eos, smbios_mainboard_version()); | ||||
| #ifdef CONFIG_MAINBOARD_FAMILY | ||||
| 	t->family = smbios_add_string(t->eos, smbios_mainboard_family()); | ||||
| #endif | ||||
| 	len = t->length + smbios_string_table_len(t->eos); | ||||
| 	*current += len; | ||||
| 	return len; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user