]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
tools: kwbimage: Change maximum number of arguments in binary header to 256
authorPali Rohár <pali@kernel.org>
Fri, 23 Jul 2021 09:14:07 +0000 (11:14 +0200)
committerStefan Roese <sr@denx.de>
Sat, 31 Jul 2021 07:49:31 +0000 (09:49 +0200)
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>
Reviewed-by: Stefan Roese <sr@denx.de>
tools/kwbimage.c

index 76c25628d42b12f85dc0061701738580502571f7..2d4574af7dae3aae3995c3c5d2bbf54b78861d48 100644 (file)
@@ -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 */