Kconfig 275 B

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