diff options
author | Peng Fan | 2022-05-07 21:23:05 +0800 |
---|---|---|
committer | Tom Rini | 2022-06-06 17:47:16 -0400 |
commit | 3800b318c5303633f056bc6ab387ef01906cee57 (patch) | |
tree | a408124190bb521a6933308dc9d804593d49df93 | |
parent | 41e47b420d6b122f6eb21e6e4438b334cc983eb1 (diff) |
boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN
CONFIG_SYS_BOOTM_LEN is not used in this file, drop it.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | boot/image-pre-load.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/boot/image-pre-load.c b/boot/image-pre-load.c index 78d89069a98..5ab9ae18746 100644 --- a/boot/image-pre-load.c +++ b/boot/image-pre-load.c @@ -23,11 +23,6 @@ DECLARE_GLOBAL_DATA_PTR; #define IMAGE_PRE_LOAD_PROP_PUBLIC_KEY "public-key" #define IMAGE_PRE_LOAD_PROP_MANDATORY "mandatory" -#ifndef CONFIG_SYS_BOOTM_LEN -/* use 8MByte as default max gunzip size */ -#define CONFIG_SYS_BOOTM_LEN 0x800000 -#endif - /* * Information in the device-tree about the signature in the header */ |