Kconfig 480 B

1234567891011121314151617181920212223242526272829
  1. if OMAP44XX
  2. choice
  3. prompt "OMAP4 board select"
  4. optional
  5. config TARGET_DUOVERO
  6. bool "OMAP4430 Gumstix Duovero"
  7. config TARGET_OMAP4_PANDA
  8. bool "TI OMAP4 PandaBoard"
  9. config TARGET_OMAP4_SDP4430
  10. bool "TI OMAP4 SDP4430"
  11. config TARGET_KC1
  12. bool "Amazon Kindle Fire (first generation)"
  13. endchoice
  14. config SYS_SOC
  15. default "omap4"
  16. source "board/gumstix/duovero/Kconfig"
  17. source "board/ti/panda/Kconfig"
  18. source "board/ti/sdp4430/Kconfig"
  19. source "board/amazon/kc1/Kconfig"
  20. endif