From 4a30a93929c112af94b8e00db1382432a69d0809 Mon Sep 17 00:00:00 2001 From: Semen Protsenko Date: Mon, 22 May 2017 19:16:42 +0300 Subject: [PATCH] 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 Reviewed-by: Tom Rini --- board/ti/dra7xx/evm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.c index 8c02add..7d36f03 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; }