diff options
author | Semen Protsenko <semen.protsenko@linaro.org> | 2017-05-22 19:16:41 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-12 08:36:25 -0400 |
commit | 8bd29623b5223e880e7be475243a2bdb987aba38 (patch) | |
tree | a0fd50e2c14b22a80acce7c0b0526e15314b3a65 /board | |
parent | fa24eca1f20a037d2dcbd1eae7ac8b2ecb1b0423 (diff) | |
download | u-boot-8bd29623b5223e880e7be475243a2bdb987aba38.zip u-boot-8bd29623b5223e880e7be475243a2bdb987aba38.tar.gz u-boot-8bd29623b5223e880e7be475243a2bdb987aba38.tar.bz2 |
arm: am57xx: 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')
-rw-r--r-- | board/ti/am57xx/board.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/ti/am57xx/board.c b/board/ti/am57xx/board.c index 0f70ef3..bf8c8e1 100644 --- a/board/ti/am57xx/board.c +++ b/board/ti/am57xx/board.c @@ -623,6 +623,7 @@ int board_late_init(void) val); omap_die_id_serial(); + omap_set_fastboot_vars(); am57x_idk_lcd_detect(); |