diff options
| author | Burt P <pburt0@gmail.com> | 2017-08-08 22:56:39 -0500 | 
|---|---|---|
| committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2017-08-14 01:56:47 -0700 | 
| commit | de3c677efb36eed6e26a0f386b7507a7126ff8f4 (patch) | |
| tree | f0cafa1ed59b64537fbd6489e2c8a5c96b028de7 | |
| parent | f5b71682d6e3dea9f17bd4d90063df9d14156743 (diff) | |
vendor.c: expand vendor list with x86 vendor ids
x86/processor.c uses vendor_get_name() with the CPUID vendor
string as argument.
Signed-off-by: Burt P <pburt0@gmail.com>
| -rw-r--r-- | hardinfo/vendor.c | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/hardinfo/vendor.c b/hardinfo/vendor.c index 23311bc2..47def3f9 100644 --- a/hardinfo/vendor.c +++ b/hardinfo/vendor.c @@ -94,6 +94,27 @@ static const Vendor vendors[] = {      {"American Megatrends", "American Megatrends", "www.ami.com"},      {"Award", "Award Software International", "www.award-bios.com"},      {"Phoenix", "Phoenix Technologies", "www.phoenix.com"}, +    /* x86 vendor strings */ +    { "AMDisbetter!", "Advanced Micro Devices", "www.amd.com" }, +    { "AuthenticAMD", "Advanced Micro Devices", "www.amd.com" }, +    { "CentaurHauls", "VIA (formerly Centaur Technology)", "www.via.tw" }, +    { "CyrixInstead", "Cyrix", "" }, +    { "GenuineIntel", "Intel", "www.intel.com" }, +    { "TransmetaCPU", "Transmeta", "" }, +    { "GenuineTMx86", "Transmeta", "" }, +    { "Geode by NSC", "National Semiconductor", "" }, +    { "NexGenDriven", "NexGen", "" }, +    { "RiseRiseRise", "Rise Technology", "" }, +    { "SiS SiS SiS", "Silicon Integrated Systems", "" }, +    { "UMC UMC UMC", "United Microelectronics Corporation", "" }, +    { "VIA VIA VIA", "VIA", "www.via.tw" }, +    { "Vortex86 SoC", "DMP Electronics", "" }, +    /* x86 VM vendor strings */ +    { "KVMKVMKVM", "KVM", "" }, +    { "Microsoft Hv", "Microsoft Hyper-V", "www.microsoft.com" }, +    { "lrpepyh vr", "Parallels", "" }, +    { "VMwareVMware", "VMware", "" }, +    { "XenVMMXenVMM", "Xen HVM", "" },  };  static GSList *vendor_list = NULL; | 
