diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2016-06-29 14:50:41 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-07-01 17:42:57 -0400 |
commit | df6b506f16d2666ebac5b9d61b67bb6bbfaea6de (patch) | |
tree | 1e8f8c8e4280aeeb0d8ee014420496296893dd5a | |
parent | 4632739202ae4d1f67c5591551598be0a80d501d (diff) |
ti_omap5_common: Find right dtb file for DRA72-RevC Evm
DRA72-Evm revC uses dra72-evm-revc.dtb. Update the same in env vatiables.
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
-rw-r--r-- | board/ti/dra7xx/evm.c | 10 | ||||
-rw-r--r-- | include/configs/ti_omap5_common.h | 2 |
2 files changed, 9 insertions, 3 deletions
diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.c index 0394e4ee57a..6a4d02769e5 100644 --- a/board/ti/dra7xx/evm.c +++ b/board/ti/dra7xx/evm.c @@ -413,10 +413,14 @@ int board_late_init(void) #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG char *name = "unknown"; - if (is_dra72x()) - name = "dra72x"; - else + if (is_dra72x()) { + if (board_is_dra72x_revc_or_later()) + name = "dra72x-revc"; + else + name = "dra72x"; + } else { name = "dra7xx"; + } set_board_info_env(name); diff --git a/include/configs/ti_omap5_common.h b/include/configs/ti_omap5_common.h index 2e4c8e96467..3589cdc3a88 100644 --- a/include/configs/ti_omap5_common.h +++ b/include/configs/ti_omap5_common.h @@ -100,6 +100,8 @@ "setenv fdtfile omap5-uevm.dtb; fi; " \ "if test $board_name = dra7xx; then " \ "setenv fdtfile dra7-evm.dtb; fi;" \ + "if test $board_name = dra72x-revc; then " \ + "setenv fdtfile dra72-evm-revc.dtb; fi;" \ "if test $board_name = dra72x; then " \ "setenv fdtfile dra72-evm.dtb; fi;" \ "if test $board_name = beagle_x15; then " \ |