diff options
author | Tom Rini <trini@konsulko.com> | 2020-04-27 17:50:43 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-27 17:50:43 -0400 |
commit | 08977f873f4034307796173784fc17a11188a0cb (patch) | |
tree | 8045cbf4733f1ff77d9b313a2d4ae48cb949babb /Makefile | |
parent | 9b20a794a71151a3a690242b5161b4ca5effd3e7 (diff) | |
parent | 0015e6defe66022b38c4fe0e2c793728ab2c3cdd (diff) |
Merge branch '2020-04-27-master-imports'
- Assorted bugfixes.
- Documentation improvements including support for https://u-boot.readthedocs.io/
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1325,7 +1325,9 @@ endif # Boards with more complex image requirements can provide an .its source file # or a generator script ifneq ($(CONFIG_SPL_FIT_SOURCE),"") -U_BOOT_ITS = $(subst ",,$(CONFIG_SPL_FIT_SOURCE)) +U_BOOT_ITS := u-boot.its +$(U_BOOT_ITS): $(subst ",,$(CONFIG_SPL_FIT_SOURCE)) + $(call if_changed,copy) else ifneq ($(CONFIG_SPL_FIT_GENERATOR),"") U_BOOT_ITS := u-boot.its |