summaryrefslogtreecommitdiff
path: root/board/siemens/taurus/Kconfig
blob: 28816bc1a0c1b7ecd7ea83010dfa874d36887c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
if TARGET_TAURUS

config SYS_BOARD
	default "taurus"

config SYS_VENDOR
	default "siemens"

config SYS_CONFIG_NAME
	default "taurus"

choice
	prompt "Board Type AXM/TAURUS"
	default BOARD_AXM

config BOARD_AXM
	bool "AXM board type"
	help
	  Select this, if you want to build for AXM board.

config BOARD_TAURUS
	bool "TAURUS board type"
	help
	  Select this, if you want to build for TAURUS board.

endchoice

endif