diff options
author | Andrew F. Davis | 2019-08-26 17:51:00 -0400 |
---|---|---|
committer | Tom Rini | 2019-09-13 11:56:30 -0400 |
commit | 76470b6929d587aa7d0294717f24ecf6fc2ce26a (patch) | |
tree | d099bf248e5ca0ca73db14af97fe6e50c2049a2d /include/configs/am65x_evm.h | |
parent | 16f14b930d4e8b11fc7d59cda19c5c0bf1eef0e6 (diff) |
configs: ti: Add environment support commands for FIT loading
Some parts of these commands can be reused, add them to common files.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Diffstat (limited to 'include/configs/am65x_evm.h')
-rw-r--r-- | include/configs/am65x_evm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/configs/am65x_evm.h b/include/configs/am65x_evm.h index 6072e4a48c8..0249a20ba8f 100644 --- a/include/configs/am65x_evm.h +++ b/include/configs/am65x_evm.h @@ -94,11 +94,14 @@ "done;\0" \ "get_kern_mmc=load mmc ${bootpart} ${loadaddr} " \ "${bootdir}/${name_kern}\0" \ + "get_fit_mmc=load mmc ${bootpart} ${addr_fit} " \ + "${bootdir}/${name_fit}\0" \ "partitions=" PARTS_DEFAULT /* Incorporate settings into the U-Boot environment */ #define CONFIG_EXTRA_ENV_SETTINGS \ DEFAULT_MMC_TI_ARGS \ + DEFAULT_FIT_TI_ARGS \ EXTRA_ENV_AM65X_BOARD_SETTINGS \ EXTRA_ENV_AM65X_BOARD_SETTINGS_MMC |