]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - board/coreboot/coreboot/Kconfig
Merge branch 'buildman' of git://git.denx.de/u-boot-x86
[karo-tx-uboot.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 "chromebook_link"
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 "chromebook_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 config SYS_CAR_ADDR
29         hex "Board specific Cache-As-RAM (CAR) address"
30         default 0x19200000
31         help
32           This option specifies the board specific Cache-As-RAM (CAR) address.
33
34 config SYS_CAR_SIZE
35         hex "Board specific Cache-As-RAM (CAR) size"
36         default 0x4000
37         help
38           This option specifies the board specific Cache-As-RAM (CAR) size.
39
40 endif