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 /boot | |
| 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 'boot')
| -rw-r--r-- | boot/image-fit-sig.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/boot/image-fit-sig.c b/boot/image-fit-sig.c index a461d591a0e..12369896fe3 100644 --- a/boot/image-fit-sig.c +++ b/boot/image-fit-sig.c @@ -260,10 +260,10 @@ static int fit_config_check_sig(const void *fit, int noffset, int conf_noffset, char **err_msgp) { static char * const exc_prop[] = { - "data", - "data-size", - "data-position", - "data-offset" + FIT_DATA_PROP, + FIT_DATA_SIZE_PROP, + FIT_DATA_POSITION_PROP, + FIT_DATA_OFFSET_PROP, }; const char *prop, *end, *name; |
