diff options
| author | Nikita Shubin <[email protected]> | 2022-12-19 11:05:27 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-12-20 09:48:16 -0500 |
| commit | 05e8e2403c533cc9e7a2a548486e2e41dfd5ce53 (patch) | |
| tree | 61cd0128797144f13175b6ac340462ce8620d729 /cmd/Kconfig | |
| parent | f7655af980dc376783bbdac833e450a86e3255f4 (diff) | |
imxtract: specify max gunzip size
Specify max gunzip size from config to override SYS_XIMG_LEN
default value wich is 0x800000. In case we have a large portion of FIT
image, for example gzipped kernel with decompressed size large than
0x800000 we should enlarge imxract area, otherwise extracting it will
fail.
It used to be a hardcoded define in cmd/ximg.c and we are moving it to
config.
Signed-off-by: Nikita Shubin <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'cmd/Kconfig')
| -rw-r--r-- | cmd/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 24bfbe50572..5a7678f0ac9 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -495,6 +495,16 @@ config CMD_XIMG help Extract a part of a multi-image. +config SYS_XIMG_LEN + hex "imxtract max gunzip size" + default 0x800000 + depends on CMD_XIMG && GZIP + help + This provides the size of the commad-line argument area + used by imxtract for extracting pieces of FIT image. + It should be large enough to fit uncompressed size of + FIT piece we are extracting. + config CMD_SPL bool "spl export - Export boot information for Falcon boot" depends on SPL |
