
19 Jul
2021
19 Jul
'21
2:20 p.m.
From: Pali Rohár pali@kernel.org
The number is stored in one byte, so the maximum should be 255.
Signed-off-by: Pali Rohár pali@kernel.org Reviewed-by: Marek Behún marek.behun@nic.cz --- tools/kwbimage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/kwbimage.c b/tools/kwbimage.c index 76c25628d4..2d4574af7d 100644 --- a/tools/kwbimage.c +++ b/tools/kwbimage.c @@ -89,7 +89,7 @@ struct nand_ecc_mode nand_ecc_modes[] = { /* Used to identify an undefined execution or destination address */ #define ADDR_INVALID ((uint32_t)-1)
-#define BINARY_MAX_ARGS 8 +#define BINARY_MAX_ARGS 255
/* In-memory representation of a line of the configuration file */
--
2.31.1