diff options
author | Simon Glass <sjg@chromium.org> | 2014-11-12 22:42:08 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-21 07:34:11 +0100 |
commit | fce7b2768364366bd4c4af9188186f6b3f9c2fe8 (patch) | |
tree | 995131c544b4157faaaeec77983dd48660914b14 /include/configs/chromebook_link.h | |
parent | 8ef07571a0300e6ae84931c63d5eb3b2310c8aba (diff) | |
download | u-boot-fce7b2768364366bd4c4af9188186f6b3f9c2fe8.tar.gz u-boot-fce7b2768364366bd4c4af9188186f6b3f9c2fe8.tar.bz2 u-boot-fce7b2768364366bd4c4af9188186f6b3f9c2fe8.zip |
x86: Build a .rom file which can be flashed to an x86 machine
On x86 machines U-Boot needs to be added to a large ROM image which is
then flashed onto the target board. The ROM has a particular format so it
makes sense for U-Boot to build this image automatically. Unfortunately
it relies on binary blobs so we cannot require this for the default
build as yet.
Create a u-boot.rom output file for this purpose.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs/chromebook_link.h')
-rw-r--r-- | include/configs/chromebook_link.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/chromebook_link.h b/include/configs/chromebook_link.h index 394e27ba9d..3137ef08b8 100644 --- a/include/configs/chromebook_link.h +++ b/include/configs/chromebook_link.h @@ -18,8 +18,10 @@ #define CONFIG_SYS_CAR_ADDR 0xff7e0000 #define CONFIG_SYS_CAR_SIZE (128 * 1024) #define CONFIG_SYS_MONITOR_LEN (1 << 20) +#define CONFIG_SYS_X86_START16 0xfffff800 #define CONFIG_BOARD_EARLY_INIT_R +#define CONFIG_X86_RESET_VECTOR #define CONFIG_NR_DRAM_BANKS 8 #define CONFIG_COREBOOT_SERIAL |