Kconfig 427 B

1234567891011121314151617181920212223242526
  1. menu "Ingenic JZ47xx platforms"
  2. depends on ARCH_JZ47XX
  3. config SYS_SOC
  4. default "jz47xx"
  5. config SOC_JZ4780
  6. bool
  7. select SUPPORTS_LITTLE_ENDIAN
  8. select SUPPORTS_CPU_MIPS32_R1
  9. select SUPPORTS_CPU_MIPS32_R2
  10. help
  11. Support for Ingenic JZ4780 family SoCs.
  12. choice
  13. prompt "Board select"
  14. config TARGET_JZ4780_CI20
  15. bool "Creator CI20 Reference Board"
  16. select SOC_JZ4780
  17. endchoice
  18. source "board/imgtec/ci20/Kconfig"
  19. endmenu