Kconfig 627 B

12345678910111213141516171819202122232425262728293031323334353637
  1. if ARCH_STMP3XXX
  2. menu "Freescale STMP3xxx implementations"
  3. choice
  4. prompt "Select STMP3xxx chip family"
  5. config ARCH_STMP37XX
  6. bool "Freescale SMTP37xx"
  7. select CPU_ARM926T
  8. ---help---
  9. STMP37xx refers to 3700 through 3769 chips
  10. config ARCH_STMP378X
  11. bool "Freescale STMP378x"
  12. select CPU_ARM926T
  13. ---help---
  14. STMP378x refers to 3780 through 3789 chips
  15. endchoice
  16. choice
  17. prompt "Select STMP3xxx board type"
  18. config MACH_STMP37XX
  19. depends on ARCH_STMP37XX
  20. bool "Freescale STMP37xx development board"
  21. config MACH_STMP378X
  22. depends on ARCH_STMP378X
  23. bool "Freescale STMP378x development board"
  24. endchoice
  25. endmenu
  26. endif