diff options
author | Andrew F. Davis <afd@ti.com> | 2017-01-11 10:28:08 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-14 16:46:24 -0500 |
commit | 2170652d9861a3ab0eac11d44a948062ee493ede (patch) | |
tree | d7d3c537e9c73f69b65e70c21c7b3cefbc003234 /include/configs/ti_armv7_common.h | |
parent | 4e2fdf451199acf943b457c02b6d3e5c228c49ef (diff) | |
download | u-boot-2170652d9861a3ab0eac11d44a948062ee493ede.tar.gz |
ti_armv7_common: env: Use FIT image configs by default
This allows us to specify a FIT configuration that will automatically
use the correct images from the FIT blob.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Diffstat (limited to 'include/configs/ti_armv7_common.h')
-rw-r--r-- | include/configs/ti_armv7_common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h index dbe494a6e3..6a94cd7bb4 100644 --- a/include/configs/ti_armv7_common.h +++ b/include/configs/ti_armv7_common.h @@ -124,8 +124,7 @@ "fit_bootfile=fitImage.itb\0" \ "update_to_fit=setenv loadaddr ${fit_loadaddr}; setenv bootfile ${fit_bootfile}\0" \ "args_fit=setenv bootargs console=${console} \0" \ - "loadfit=run args_fit; bootm ${loadaddr}:kernel@1 " \ - "${loadaddr}:ramdisk@1 ${loadaddr}:${fdtfile};\0" \ + "loadfit=run args_fit; bootm ${loadaddr}#${fdtfile};\0" \ /* * DDR information. If the CONFIG_NR_DRAM_BANKS is not defined, |