Kconfig 428 B

1234567891011121314151617181920212223242526
  1. if ARCH_MXC
  2. menu "Freescale MXC Implementations"
  3. choice
  4. prompt "MXC/iMX Base Type"
  5. default ARCH_MX3
  6. config ARCH_MX2
  7. bool "MX2-based"
  8. help
  9. This enables support for systems based on the Freescale i.MX2 family
  10. config ARCH_MX3
  11. bool "MX3-based"
  12. help
  13. This enables support for systems based on the Freescale i.MX3 family
  14. endchoice
  15. source "arch/arm/mach-mx2/Kconfig"
  16. source "arch/arm/mach-mx3/Kconfig"
  17. endmenu
  18. endif