Kconfig 617 B

12345678910111213141516171819202122232425262728
  1. if ARCH_U8500
  2. config SYS_SOC
  3. default "u8500"
  4. choice
  5. prompt "U8500 board selection"
  6. config TARGET_STEMMY
  7. bool "Samsung (stemmy) board"
  8. help
  9. The Samsung "stemmy" board supports Samsung smartphones released with
  10. the ST-Ericsson NovaThor U8500 SoC, e.g.
  11. - Samsung Galaxy S III mini (GT-I8190) "golden"
  12. - Samsung Galaxy S Advance (GT-I9070) "janice"
  13. - Samsung Galaxy Xcover 2 (GT-S7710) "skomer"
  14. - Samsung Galaxy Ace 2 (GT-I8160) "codina"
  15. and likely others as well (untested).
  16. See board/ste/stemmy/README for details.
  17. endchoice
  18. source "board/ste/stemmy/Kconfig"
  19. endif