diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-03-31 11:51:04 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-29 18:51:48 -0600 |
commit | d21d05f19a7e4f3b27895a835d0e6de6d7951722 (patch) | |
tree | 35e0bc72edb454cf0501ceed1b4256022aa17aaa /include/configs/x86-common.h | |
parent | 9704f23b0080f417b73cd430c0f806752785f30b (diff) | |
download | u-boot-d21d05f19a7e4f3b27895a835d0e6de6d7951722.tar.gz |
x86: Move CONFIG_ENV_IS_IN_SPI_FLASH to x86-common.h
Since all x86 boards use spi flash as its bootloader storage media,
it makes sense to make CONFIG_ENV_IS_IN_SPI_FLASH a common option.
So far only minnowmax board does not support it so undefine it in
its board configuration file.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs/x86-common.h')
-rw-r--r-- | include/configs/x86-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/x86-common.h b/include/configs/x86-common.h index 9571c656be..07a5aca58f 100644 --- a/include/configs/x86-common.h +++ b/include/configs/x86-common.h @@ -207,7 +207,7 @@ /*----------------------------------------------------------------------- * Environment configuration */ -#define CONFIG_ENV_IS_NOWHERE +#define CONFIG_ENV_IS_IN_SPI_FLASH #define CONFIG_ENV_SIZE 0x01000 /*----------------------------------------------------------------------- |