diff options
Diffstat (limited to 'arch/x86/Kconfig.cpu')
-rw-r--r-- | arch/x86/Kconfig.cpu | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/arch/x86/Kconfig.cpu b/arch/x86/Kconfig.cpu index 468ffc2df0e0..1b29d6a87563 100644 --- a/arch/x86/Kconfig.cpu +++ b/arch/x86/Kconfig.cpu | |||
@@ -416,6 +416,68 @@ config X86_DEBUGCTLMSR | |||
416 | def_bool y | 416 | def_bool y |
417 | depends on !(MK6 || MWINCHIPC6 || MWINCHIP2 || MWINCHIP3D || MCYRIXIII || M586MMX || M586TSC || M586 || M486 || M386) | 417 | depends on !(MK6 || MWINCHIPC6 || MWINCHIP2 || MWINCHIP3D || MCYRIXIII || M586MMX || M586TSC || M586 || M486 || M386) |
418 | 418 | ||
419 | menuconfig PROCESSOR_SELECT | ||
420 | default y | ||
421 | bool "Supported processor vendors" if EMBEDDED | ||
422 | help | ||
423 | This lets you choose what x86 vendor support code your kernel | ||
424 | will include. | ||
425 | |||
426 | config CPU_SUP_INTEL_32 | ||
427 | default y | ||
428 | bool "Support Intel processors" if PROCESSOR_SELECT | ||
429 | depends on !64BIT | ||
430 | help | ||
431 | This enables extended support for Intel processors | ||
432 | |||
433 | config CPU_SUP_INTEL_64 | ||
434 | default y | ||
435 | bool "Support Intel processors" if PROCESSOR_SELECT | ||
436 | depends on 64BIT | ||
437 | help | ||
438 | This enables extended support for Intel processors | ||
439 | |||
440 | config CPU_SUP_CYRIX_32 | ||
441 | default y | ||
442 | bool "Support Cyrix processors" if PROCESSOR_SELECT | ||
443 | depends on !64BIT | ||
444 | help | ||
445 | This enables extended support for Cyrix processors | ||
446 | |||
447 | config CPU_SUP_AMD | ||
448 | default y | ||
449 | bool "Support AMD processors" if PROCESSOR_SELECT | ||
450 | help | ||
451 | This enables extended support for AMD processors | ||
452 | |||
453 | config CPU_SUP_CENTAUR_32 | ||
454 | default y | ||
455 | bool "Support Centaur processors" if PROCESSOR_SELECT | ||
456 | depends on !64BIT | ||
457 | help | ||
458 | This enables extended support for Centaur processors | ||
459 | |||
460 | config CPU_SUP_CENTAUR_64 | ||
461 | default y | ||
462 | bool "Support Centaur processors" if PROCESSOR_SELECT | ||
463 | depends on 64BIT | ||
464 | help | ||
465 | This enables extended support for Centaur processors | ||
466 | |||
467 | config CPU_SUP_TRANSMETA_32 | ||
468 | default y | ||
469 | bool "Support Transmeta processors" if PROCESSOR_SELECT | ||
470 | depends on !64BIT | ||
471 | help | ||
472 | This enables extended support for Transmeta processors | ||
473 | |||
474 | config CPU_SUP_UMC_32 | ||
475 | default y | ||
476 | bool "Support UMC processors" if PROCESSOR_SELECT | ||
477 | depends on !64BIT | ||
478 | help | ||
479 | This enables extended support for UMC processors | ||
480 | |||
419 | config X86_DS | 481 | config X86_DS |
420 | bool "Debug Store support" | 482 | bool "Debug Store support" |
421 | default y | 483 | default y |