diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2014-07-14 19:57:58 +0530 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-07-14 11:16:38 -0400 |
commit | 4ec3f6e5104034e113f6ea8ab356f78ff4ad00b8 (patch) | |
tree | 2075824e2fe1919b223407f549a79cfc69f2be8b /board | |
parent | 75e6cd2799f0d6bf994a1154107cb950b232aa59 (diff) |
ARM: DRA7xx: Update the board_name env variable
Update the board_name env variable and accordingly
populate the dtb file.
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/ti/dra7xx/evm.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.c index 073d15127cf..7f19655cfeb 100644 --- a/board/ti/dra7xx/evm.c +++ b/board/ti/dra7xx/evm.c @@ -82,6 +82,12 @@ int board_init(void) int board_late_init(void) { +#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG + if (omap_revision() == DRA722_ES1_0) + setenv("board_name", "dra72x"); + else + setenv("board_name", "dra7xx"); +#endif init_sata(0); return 0; } |