[CentOS] CentOS 6 / Intel CPU support

Leon Fauster leonfauster at googlemail.com
Thu May 11 14:29:33 UTC 2017


> Am 11.05.2017 um 14:48 schrieb Leon Fauster <leonfauster at googlemail.com>:
> 
> https://access.redhat.com/support/policy/intel
> 
> shows mainly Xeon CPUs. What about
> 
> Intel Core i7-6700 Quad-Core Skylake
> 
> has the current EL6 variant support for it?
> 
> Any experience? Feedback would be greatly appreciated.


I found this

linux-2.6.32-696.1.1.el6/arch/x86/kernel/setup.c

 796     if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
 797         ((boot_cpu_data.x86 == 6))) {
 798         switch (boot_cpu_data.x86_model) {
 799         case 94: /* Skylake-S */
 800         case 86: /* Broadwell-DE SoC */
 801         case 85: /* Purley */
 802         case 79: /* Broadwell-EP and EX */
 803         case 78: /* Skylake-Y */
 804         case 77: /* Atom Avoton */
 805         case 71: /* Broadwell-H */
 806         case 70: /* Crystal Well */
 807             break;
 808         default:
 809             if (boot_cpu_data.x86_model > 63) {
 810                 printk(KERN_CRIT
 811                        "Detected CPU family %d model %d\n",
 812                        boot_cpu_data.x86,
 813                        boot_cpu_data.x86_model);
 814                 mark_hardware_unsupported("Intel CPU model");
 815             }
 816             break;
 817         }
 818     }

not sure if "case 94: /* Skylake-S */" means support for Intel Core i7-6700 Quad-Core Skylake ...

--
LF







More information about the CentOS mailing list