aboutsummaryrefslogtreecommitdiff
path: root/include/configs/hikey.h
diff options
context:
space:
mode:
authorManivannan Sadhasivam <manivannan.sadhasivam@linaro.org>2019-02-13 14:28:54 +0530
committerTom Rini <trini@konsulko.com>2019-02-19 08:55:43 -0500
commit362d00dfff049603ada5e0257943f0d74aeb8854 (patch)
treec7a04d2d1b6cdd61752292bf153a8aa027d51d51 /include/configs/hikey.h
parent7374b15522b94d39108da6233b60ffbf30632678 (diff)
downloadu-boot-362d00dfff049603ada5e0257943f0d74aeb8854.zip
u-boot-362d00dfff049603ada5e0257943f0d74aeb8854.tar.gz
u-boot-362d00dfff049603ada5e0257943f0d74aeb8854.tar.bz2
hikey: Allow environment to store in eMMC and increase bootdelay
Current Hikey configuration allows us to store u-boot environment on uSD card. But this will be useless if uSD card is not inserted, hence use the onboard eMMC memory for storing environment at Boot1 partition. While we are at it, let's increase the boot delay to 10s also. Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Diffstat (limited to 'include/configs/hikey.h')
-rw-r--r--include/configs/hikey.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/configs/hikey.h b/include/configs/hikey.h
index 003cd75..60c6bde 100644
--- a/include/configs/hikey.h
+++ b/include/configs/hikey.h
@@ -81,8 +81,10 @@
"initrd_high=0xffffffffffffffff\0" \
BOOTENV
-/* Preserve environment on sd card */
+/* Preserve environment on eMMC */
#define CONFIG_ENV_SIZE 0x1000
+#define CONFIG_SYS_MMC_ENV_DEV 0 /* Use eMMC */
+#define CONFIG_SYS_MMC_ENV_PART 2 /* Use Boot1 partition */
/* Monitor Command Prompt */
#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */