We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aaf068 commit 6412909Copy full SHA for 6412909
memory.go
@@ -70,12 +70,13 @@ loop:
70
si.Memory.Size += size
71
72
if si.Memory.Type == "" {
73
- // SMBIOS Reference Specification Version 3.0.0, page 92
+ // SMBIOS Reference Specification Version 3.8.0, page 103
74
memTypes := [...]string{
75
"Other", "Unknown", "DRAM", "EDRAM", "VRAM", "SRAM", "RAM", "ROM", "FLASH",
76
"EEPROM", "FEPROM", "EPROM", "CDRAM", "3DRAM", "SDRAM", "SGRAM", "RDRAM",
77
"DDR", "DDR2", "DDR2 FB-DIMM", "Reserved", "Reserved", "Reserved", "DDR3",
78
- "FBD2", "DDR4", "LPDDR", "LPDDR2", "LPDDR3", "LPDDR4",
+ "FBD2", "DDR4", "LPDDR", "LPDDR2", "LPDDR3", "LPDDR4", "Logical non-volatile device",
79
+ "HBM", "HBM2", "DDR5", "LPDDR5", "HBM3",
80
}
81
82
if index := int(dmi[p+0x12]); index >= 1 && index <= len(memTypes) {
0 commit comments