diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-02-16 17:08:42 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-02-29 03:50:16 +0900 |
commit | aa8a93480e072d8d0473e512b66c31f3c4cc3cc7 (patch) | |
tree | acaaa16003bdc98b533c13a01f57a9114e01f17a /include/configs | |
parent | c231c4367ace6574e27ff0d1844d163fc471287b (diff) | |
download | u-boot-imx-aa8a93480e072d8d0473e512b66c31f3c4cc3cc7.zip u-boot-imx-aa8a93480e072d8d0473e512b66c31f3c4cc3cc7.tar.gz u-boot-imx-aa8a93480e072d8d0473e512b66c31f3c4cc3cc7.tar.bz2 |
ARM: uniphier: default to environment in eMMC
Of the several boot devices supported, it looks like the eMMC is the
most commonly used. Enable CONFIG_ENV_IS_IN_MMC by default.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/uniphier.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h index 1b28cdc..b1c8ccb 100644 --- a/include/configs/uniphier.h +++ b/include/configs/uniphier.h @@ -99,16 +99,16 @@ #define CONFIG_CONS_INDEX 1 -/* - * For NAND booting the environment is embedded in the U-Boot image. Please take - * look at the file board/amcc/canyonlands/u-boot-nand.lds for details. - */ +/* #define CONFIG_ENV_IS_NOWHERE */ /* #define CONFIG_ENV_IS_IN_NAND */ -#define CONFIG_ENV_IS_NOWHERE +#define CONFIG_ENV_IS_IN_MMC +#define CONFIG_ENV_OFFSET 0x80000 #define CONFIG_ENV_SIZE 0x2000 -#define CONFIG_ENV_OFFSET 0x0 /* #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE) */ +#define CONFIG_SYS_MMC_ENV_DEV 0 +#define CONFIG_SYS_MMC_ENV_PART 1 + /* Time clock 1MHz */ #define CONFIG_SYS_TIMER_RATE 1000000 |