linux/arch/powerpc/platforms/82xx/Kconfig
<<
>>
Prefs
   1choice
   2        prompt "82xx Board Type"
   3        depends on PPC_82xx
   4        default MPC8272_ADS
   5
   6config MPC8272_ADS
   7        bool "Freescale MPC8272 ADS"
   8        select DEFAULT_UIMAGE
   9        select PQ2ADS
  10        select 8272
  11        select 8260
  12        select FSL_SOC
  13        select PQ2_ADS_PCI_PIC if PCI
  14        select PPC_CPM_NEW_BINDING
  15        help
  16          This option enables support for the MPC8272 ADS board
  17
  18config PQ2FADS
  19        bool "Freescale PQ2FADS"
  20        select DEFAULT_UIMAGE
  21        select PQ2ADS
  22        select 8260
  23        select FSL_SOC
  24        select PQ2_ADS_PCI_PIC if PCI
  25        select PPC_CPM_NEW_BINDING
  26        help
  27          This option enables support for the PQ2FADS board
  28
  29endchoice
  30
  31config PQ2ADS
  32        bool
  33        default n
  34
  35config 8260
  36        bool
  37        depends on 6xx
  38        select CPM2
  39        help
  40          The MPC8260 is a typical embedded CPU made by Freescale.  Selecting
  41          this option means that you wish to build a kernel for a machine with
  42          an 8260 class CPU.
  43
  44config 8272
  45        bool
  46        select 8260
  47        help
  48          The MPC8272 CPM has a different internal dpram setup than other CPM2
  49          devices
  50
  51config PQ2_ADS_PCI_PIC
  52        bool
  53