diff options
author | Dirk Eibach | 2014-07-03 09:28:26 +0200 |
---|---|---|
committer | Tom Rini | 2014-07-07 19:47:19 -0400 |
commit | 9a4f479b649a611478ff1b983c9a30f9150a696b (patch) | |
tree | d2892d9f8dd33ae1567392595327b14cf9b86308 /include | |
parent | 4fb9b41b550c3620c4cd5c2490b8800465c220dd (diff) |
fit: make sha256 support optional
sha256 has some beefy memory footprint.
Make it optional for constrained systems.
Signed-off-by: Dirk Eibach <dirk.eibach@gdsys.cc>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/dlvision-10g.h | 1 | ||||
-rw-r--r-- | include/configs/io.h | 1 | ||||
-rw-r--r-- | include/configs/iocon.h | 1 | ||||
-rw-r--r-- | include/configs/neo.h | 1 | ||||
-rw-r--r-- | include/image.h | 5 |
5 files changed, 9 insertions, 0 deletions
diff --git a/include/configs/dlvision-10g.h b/include/configs/dlvision-10g.h index 2567a2221dd..6153a40e061 100644 --- a/include/configs/dlvision-10g.h +++ b/include/configs/dlvision-10g.h @@ -40,6 +40,7 @@ /* new uImage format support */ #define CONFIG_FIT #define CONFIG_FIT_VERBOSE /* enable fit_format_{error,warning}() */ +#define CONFIG_FIT_DISABLE_SHA256 #define CONFIG_ENV_IS_IN_FLASH /* use FLASH for environment vars */ diff --git a/include/configs/io.h b/include/configs/io.h index 649c0fba13d..8e32c25803e 100644 --- a/include/configs/io.h +++ b/include/configs/io.h @@ -40,6 +40,7 @@ /* new uImage format support */ #define CONFIG_FIT #define CONFIG_FIT_VERBOSE /* enable fit_format_{error,warning}() */ +#define CONFIG_FIT_DISABLE_SHA256 #define CONFIG_ENV_IS_IN_FLASH /* use FLASH for environment vars */ diff --git a/include/configs/iocon.h b/include/configs/iocon.h index 35ba1bd248d..ae05bcbfbf4 100644 --- a/include/configs/iocon.h +++ b/include/configs/iocon.h @@ -39,6 +39,7 @@ /* new uImage format support */ #define CONFIG_FIT #define CONFIG_FIT_VERBOSE /* enable fit_format_{error,warning}() */ +#define CONFIG_FIT_DISABLE_SHA256 #define CONFIG_ENV_IS_IN_FLASH /* use FLASH for environment vars */ diff --git a/include/configs/neo.h b/include/configs/neo.h index 75dc8621600..4937730ee30 100644 --- a/include/configs/neo.h +++ b/include/configs/neo.h @@ -37,6 +37,7 @@ /* new uImage format support */ #define CONFIG_FIT #define CONFIG_FIT_VERBOSE /* enable fit_format_{error,warning}() */ +#define CONFIG_FIT_DISABLE_SHA256 #define CONFIG_ENV_IS_IN_FLASH /* use FLASH for environment vars */ diff --git a/include/image.h b/include/image.h index 0a072f5336c..3e8f78d583d 100644 --- a/include/image.h +++ b/include/image.h @@ -72,6 +72,11 @@ struct lmb; # define IMAGE_ENABLE_SHA256 1 # endif +#ifdef CONFIG_FIT_DISABLE_SHA256 +#undef CONFIG_SHA256 +#undef IMAGE_ENABLE_SHA256 +#endif + #ifndef IMAGE_ENABLE_CRC32 #define IMAGE_ENABLE_CRC32 0 #endif |