Kconfig 417 B

12345678910111213141516171819202122232425262728
  1. if TARGET_TAURUS
  2. config SYS_BOARD
  3. default "taurus"
  4. config SYS_VENDOR
  5. default "siemens"
  6. config SYS_CONFIG_NAME
  7. default "taurus"
  8. choice
  9. prompt "Board Type AXM/TAURUS"
  10. default BOARD_AXM
  11. config BOARD_AXM
  12. bool "AXM board type"
  13. help
  14. Select this, if you want to build for AXM board.
  15. config BOARD_TAURUS
  16. bool "TAURUS board type"
  17. help
  18. Select this, if you want to build for TAURUS board.
  19. endchoice
  20. endif