Skip to content
Snippets Groups Projects
Commit c0561d14 authored by Simon Glass's avatar Simon Glass
Browse files

x86: Enable FIT, ELF on coreboot


Enable FIT support and the bootelf command. Also change the default load
address to somewhere other than the normal load address of the kernel,
to allow for decompression without overwriting the original file.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent c67161c1
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
#define CONFIG_BOOTSTAGE_USER_COUNT 60 #define CONFIG_BOOTSTAGE_USER_COUNT 60
#define CONFIG_LZO #define CONFIG_LZO
#define CONFIG_FIT
#undef CONFIG_ZLIB #undef CONFIG_ZLIB
#undef CONFIG_GZIP #undef CONFIG_GZIP
...@@ -194,6 +195,7 @@ ...@@ -194,6 +195,7 @@
#define CONFIG_CMD_EXT2 #define CONFIG_CMD_EXT2
#define CONFIG_CMD_ZBOOT #define CONFIG_CMD_ZBOOT
#define CONFIG_CMD_ELF
#define CONFIG_BOOTDELAY 2 #define CONFIG_BOOTDELAY 2
#define CONFIG_BOOTARGS \ #define CONFIG_BOOTARGS \
...@@ -219,7 +221,7 @@ ...@@ -219,7 +221,7 @@
#define CONFIG_SYS_MEMTEST_START 0x00100000 #define CONFIG_SYS_MEMTEST_START 0x00100000
#define CONFIG_SYS_MEMTEST_END 0x01000000 #define CONFIG_SYS_MEMTEST_END 0x01000000
#define CONFIG_SYS_LOAD_ADDR 0x100000 #define CONFIG_SYS_LOAD_ADDR 0x02000000
/*----------------------------------------------------------------------- /*-----------------------------------------------------------------------
* SDRAM Configuration * SDRAM Configuration
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment