diff options
author | Semen Protsenko | 2017-05-22 19:16:42 +0300 |
---|---|---|
committer | Tom Rini | 2017-06-12 08:36:26 -0400 |
commit | 4a30a93929c112af94b8e00db1382432a69d0809 (patch) | |
tree | 391efec6612e424f200f664ee03dc6b1a18d351a /board/ti | |
parent | 8bd29623b5223e880e7be475243a2bdb987aba38 (diff) |
arm: dra7: Set fastboot variables in environment
One can obtain those variables using next commands:
$ fastboot getvar cpu
$ fastboot getvar secure
$ fastboot getvar board_rev
$ fastboot getvar userdata_size
Those variables are needed for fastboot.sh script.
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/ti')
-rw-r--r-- | board/ti/dra7xx/evm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.c index 8c02addd081..7d36f03fa1e 100644 --- a/board/ti/dra7xx/evm.c +++ b/board/ti/dra7xx/evm.c @@ -561,6 +561,7 @@ int board_late_init(void) setenv("boot_fit", "1"); omap_die_id_serial(); + omap_set_fastboot_vars(); #endif return 0; } |