x86: coreboot: Make SYS_CONFIG_NAME and DEFAULT_DEVICE_TREE configurable
[platform/kernel/u-boot.git] / board / coreboot / coreboot / Kconfig
1 if TARGET_COREBOOT
2
3 config SYS_BOARD
4         default "coreboot"
5
6 config SYS_VENDOR
7         default "coreboot"
8
9 config SYS_SOC
10         default "coreboot"
11
12 comment "coreboot-specific options"
13
14 config SYS_CONFIG_NAME
15         string "Board configuration file"
16         default "coreboot"
17         help
18           This option selects the board configuration file in include/configs/
19           directory to be used to build U-Boot for coreboot.
20
21 config DEFAULT_DEVICE_TREE
22         string "Board Device Tree Source (dts) file"
23         default "link"
24         help
25           This option selects the board Device Tree Source (dts) file in
26           arch/x86/dts/ directory to be used to build U-Boot for coreboot.
27
28 endif