ARM: DRA7: Make FIT boot as default boot on HS devices

Verification has to be done before booting any images on HS devices. So
default the boot to FIT on HS devices.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Lokesh Vutla 2016-11-29 11:58:01 +05:30 committed by Tom Rini
parent 1e93cc8473
commit 71c1b58e89
1 changed files with 7 additions and 0 deletions

View File

@ -426,6 +426,13 @@ int board_late_init(void)
set_board_info_env(name);
/*
* Default FIT boot on HS devices. Non FIT images are not allowed
* on HS devices.
*/
if (get_device_type() == HS_DEVICE)
setenv("boot_fit", "1");
omap_die_id_serial();
#endif
return 0;