Kconfig 408 B

123456789101112131415161718192021222324252627
  1. if ARCH_STMP3XXX
  2. menu "Freescale STMP3xxx implementations"
  3. choice
  4. prompt "Select STMP3xxx chip family"
  5. config ARCH_STMP378X
  6. bool "Freescale STMP378x"
  7. select CPU_ARM926T
  8. ---help---
  9. STMP378x refers to 3780 through 3789 chips
  10. endchoice
  11. choice
  12. prompt "Select STMP3xxx board type"
  13. config MACH_STMP378X
  14. depends on ARCH_STMP378X
  15. bool "Freescale STMP378x development board"
  16. endchoice
  17. endmenu
  18. endif