[U-Boot] [PATCH v2 2/2] davinci: omapl138_lcdk: add DT support for EMMC boot
Fabien Parent
fparent at baylibre.com
Tue Nov 29 17:15:03 CET 2016
When booting from EMMC, load the DTB and pass it to the kernel.
Signed-off-by: Fabien Parent <fparent at baylibre.com>
Reviewed-by: Tom Rini <trini at konsulko.com>
---
v1 -> v2:
* No change
---
include/configs/omapl138_lcdk.h | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/include/configs/omapl138_lcdk.h b/include/configs/omapl138_lcdk.h
index c896638..fe9f94d 100644
--- a/include/configs/omapl138_lcdk.h
+++ b/include/configs/omapl138_lcdk.h
@@ -207,12 +207,16 @@
"run spiboot; " \
"fi"
#define CONFIG_EXTRA_ENV_SETTINGS \
+ "fdtaddr=0xc0600000\0" \
+ "fdtfile=da850-lcdk.dtb\0" \
+ "fdtboot=bootm 0xc0700000 - ${fdtaddr};\0" \
"mmcboot=" \
"if fatload mmc 0 0xc0600000 boot.scr; then " \
"source 0xc0600000; " \
"else " \
"fatload mmc 0 0xc0700000 uImage; " \
- "bootm 0xc0700000; " \
+ "fatload mmc 0 ${fdtaddr} ${fdtfile}; " \
+ "run fdtboot; " \
"fi;\0" \
"spiboot=" \
"sf probe 0; " \
--
2.10.2
More information about the U-Boot
mailing list