Patrick Rudolph (siro@das-labor.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13863
-gerrit
commit c8b1bdae8e879de2393df3568fbc176884a4a4b5 Author: Patrick Rudolph siro@das-labor.org Date: Mon Feb 29 19:19:46 2016 +0100
src/arch/x86/smbios: Add vendors
Add more manufacturer IDs for vendor: * GSkill * OCZ * Transcend
Change-Id: Ic7df76b1310b2c1abea9c5d2d8fd688cb2a713b8 Signed-off-by: Patrick Rudolph siro@das-labor.org --- src/arch/x86/smbios.c | 12 ++++++++++++ 1 file changed, 12 insertions(+)
diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c index 305ba40..8c87635 100644 --- a/src/arch/x86/smbios.c +++ b/src/arch/x86/smbios.c @@ -131,6 +131,10 @@ void smbios_fill_dimm_manufacturer_from_id(uint16_t mod_id, struct smbios_type17 t->manufacturer = smbios_add_string(t->eos, "Crucial"); break; + case 0x4f01: + t->manufacturer = smbios_add_string(t->eos, + "Transcend"); + break; case 0x9801: t->manufacturer = smbios_add_string(t->eos, "Kingston"); @@ -143,10 +147,18 @@ void smbios_fill_dimm_manufacturer_from_id(uint16_t mod_id, struct smbios_type17 t->manufacturer = smbios_add_string(t->eos, "Corsair"); break; + case 0xb004: + t->manufacturer = smbios_add_string(t->eos, + "OCZ"); + break; case 0xad80: t->manufacturer = smbios_add_string(t->eos, "Hynix/Hyundai"); break; + case 0xcd04: + t->manufacturer = smbios_add_string(t->eos, + "GSkill"); + break; case 0xce80: t->manufacturer = smbios_add_string(t->eos, "Samsung");