We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8707f7 commit f904a5cCopy full SHA for f904a5c
parser/system/parse.go
@@ -25,6 +25,8 @@ func Parse(s *smbios.Structure) (*Information, error) {
25
}
26
27
// UUID 主板uuid
28
+// If the value is all FFh, the ID is not currently present in the system,
29
+// but it can be set. If the value is all 00h, the ID is not present in the system.
30
func uuid(data []byte, ver string) string {
31
if bytes.Index(data, []byte{0x00}) != -1 {
32
return "Not present"
0 commit comments