diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-01-06 22:14:21 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-01-13 07:25:04 -0800 |
commit | ade8127a7929c6394908e7debe89e297202b7efa (patch) | |
tree | c6a9a496b501fa67eb6b7ea32d5ccbee5520538c /board | |
parent | fa48e51013280396f02e668a5d9f1d606d69be35 (diff) | |
download | u-boot-imx-ade8127a7929c6394908e7debe89e297202b7efa.zip u-boot-imx-ade8127a7929c6394908e7debe89e297202b7efa.tar.gz u-boot-imx-ade8127a7929c6394908e7debe89e297202b7efa.tar.bz2 |
x86: Make chromebook_link the default board for coreboot
Change SYS_CONFIG_NAME and DEFAULT_DEVICE_TREE to chromebook_link
which is currently the only real board officially supported to run
U-Boot loaded by coreboot.
Note the symbolic link file chromebook_link.dts is deleted and
link.dts is renamed to chromebook_link.dts.
To avoid multiple definition of video_hw_init, the CONFIG_VIDEO_X86
define needs to be moved to arch/x86/cpu/ivybridge/Kconfig.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board')
-rw-r--r-- | board/coreboot/coreboot/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/coreboot/coreboot/Kconfig b/board/coreboot/coreboot/Kconfig index f2cd754..981de1f 100644 --- a/board/coreboot/coreboot/Kconfig +++ b/board/coreboot/coreboot/Kconfig @@ -13,14 +13,14 @@ comment "coreboot-specific options" config SYS_CONFIG_NAME string "Board configuration file" - default "coreboot" + default "chromebook_link" 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" + default "chromebook_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. |