diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-01-06 14:14:21 (GMT) |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-01-13 15:25:04 (GMT) |
commit | ade8127a7929c6394908e7debe89e297202b7efa (patch) | |
tree | c6a9a496b501fa67eb6b7ea32d5ccbee5520538c /drivers/video | |
parent | fa48e51013280396f02e668a5d9f1d606d69be35 (diff) | |
download | u-boot-fsl-qoriq-ade8127a7929c6394908e7debe89e297202b7efa.tar.xz |
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 'drivers/video')
-rw-r--r-- | drivers/video/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index e69de29..fdbf3f6 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -0,0 +1,8 @@ +config VIDEO_X86 + bool "Enable x86 video driver support" + depends on X86 + default n + help + Turn on this option to enable a very simple driver which uses vesa + to discover the video mode and then provides a frame buffer for use + by U-Boot. |