Details
Details
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 63384 Build 60268: arc lint + arc unit
Event Timeline
Comment Actions
So what is version? A number or a description? Thinking about it after I click approve i waz suddenly unsure about this detail
Comment Actions
It's the identification string embedded in the CPUID, which is reported in DMI section 4:
[threepio:~] rpokala% sudo dmidecode -t 4 | grep Version Version: AMD Ryzen 9 7900 12-Core Processor [threepio:~] rpokala% kenv smbios.processor.version AMD Ryzen 9 7900 12-Core Processor [threepio:~] rpokala% kenv | grep smbios.processor.version smbios.processor.version="AMD Ryzen 9 7900 12-Core Processor " [threepio:~] rpokala% /usr/local/bin/cpuid | grep -E '^(8000000[234]|Vendor ID|Processor name string)' 80000002 20444d41 657a7952 2039206e 30303937 80000003 2d323120 65726f43 6f725020 73736563 80000004 2020726f 20202020 20202020 00202020 Vendor ID: "AuthenticAMD"; CPUID level 16 Processor name string: AMD Ryzen 9 7900 12-Core Processor [threepio:~] rpokala%