summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDan Murphy <dmurphy@ti.com>2013-04-18 06:29:53 +0000
committerTom Rini <trini@ti.com>2013-05-10 08:25:55 -0400
commit34f667bbc4819607735dd56df17c8f1789af40d1 (patch)
treef8aa82b45688eadfbff598eaff5d03297b2222c0 /include
parent0b1b60c77954df19b5a601e2ba87614f2d0bbb8b (diff)
ARM:Panda:Fix device tree loading for the panda-es
Fix the device tree loading for panda(4430) and panda-es(4460) Modify the board name if a 4460 panda or panda-es is detected at run time. In the findfdt add a check for the panda-es board name and load the panda-es device tree blob. Signed-off-by: Dan Murphy <dmurphy@ti.com>
Diffstat (limited to 'include')
-rw-r--r--include/configs/omap4_common.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/configs/omap4_common.h b/include/configs/omap4_common.h
index 1fd3097d75..68faecacec 100644
--- a/include/configs/omap4_common.h
+++ b/include/configs/omap4_common.h
@@ -176,7 +176,9 @@
"if test $board_name = sdp4430; then " \
"setenv fdtfile omap4-sdp.dtb; fi; " \
"if test $board_name = panda; then " \
- "setenv fdtfile omap4-panda-es.dtb; fi\0" \
+ "setenv fdtfile omap4-panda.dtb; fi;" \
+ "if test $board_name = panda-es; then " \
+ "setenv fdtfile omap4-panda-es.dtb; fi; \0" \
"loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
#define CONFIG_BOOTCOMMAND \