diff options
| author | Tom Rini <[email protected]> | 2022-10-26 15:24:59 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-10-26 15:24:59 -0400 |
| commit | 8bc87a4c55a1723728374a5643f13bced37dad6b (patch) | |
| tree | b4ace98fe43682d20639adab97778dca140149c2 /tools | |
| parent | b487387226d49ba2f39757269fb95ea398e8f384 (diff) | |
| parent | 9b0b5648d6e4d89aa594022e48894e811c250d5f (diff) | |
Merge branch '2022-10-26-assorted-fixes-and-updates'
- Reduce memory usage in SPL in some cases, clarify some standalone API
license issues, fix a Kconfig dependency, pin to a specific version of
python setuptools for now, fix a signing problem in mkimage and add a
memory uclass.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/image-host.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/image-host.c b/tools/image-host.c index 0bf18df50e7..4e0512be634 100644 --- a/tools/image-host.c +++ b/tools/image-host.c @@ -915,7 +915,12 @@ static int fit_config_get_regions(const void *fit, int conf_noffset, int *region_countp, char **region_propp, int *region_proplen) { - char * const exc_prop[] = {"data"}; + char * const exc_prop[] = { + FIT_DATA_PROP, + FIT_DATA_SIZE_PROP, + FIT_DATA_POSITION_PROP, + FIT_DATA_OFFSET_PROP, + }; struct strlist node_inc; struct image_region *region; struct fdt_region fdt_regions[100]; |
