summaryrefslogtreecommitdiff
path: root/board/coreboot/coreboot/Kconfig
blob: e5ccf5848f2985e95b6b4f3317334752e89fabed (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_COREBOOT

config SYS_BOARD
	default "coreboot"

config SYS_VENDOR
	default "coreboot"

config SYS_SOC
	default "coreboot"

comment "coreboot-specific options"

config SYS_CONFIG_NAME
	string "Board configuration file"
	default "coreboot"
	help
	  This option selects the board configuration file in include/configs/
	  directory to be used to build U-Boot for coreboot.

config DEFAULT_DEVICE_TREE
	string "Board Device Tree Source (dts) file"
	default "link"
	help
	  This option selects the board Device Tree Source (dts) file in
	  arch/x86/dts/ directory to be used to build U-Boot for coreboot.

endif