mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 14:40:41 +00:00
image.h: Tighten up content using handy CONFIG_IS_ENABLED() macro.
In order for CONFIG_IS_ENABLED(FOO) to work we need to move the changes that CONFIG_FIT_DISABLE_SHA256 makes to be prior to the evaluation by CONFIG_IS_ENABLED(foo) Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> [trini: Move CONFIG_FIT_DISABLE_SHA256 parts to fix build breakage] Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
ba9eb6c7eb
commit
56adbb3872
1 changed files with 12 additions and 57 deletions
|
@ -52,19 +52,15 @@ struct lmb;
|
|||
#include <hash.h>
|
||||
#include <libfdt.h>
|
||||
#include <fdt_support.h>
|
||||
# ifdef CONFIG_FIT_DISABLE_SHA256
|
||||
# undef CONFIG_SHA256
|
||||
# undef IMAGE_ENABLE_SHA256
|
||||
# endif
|
||||
# ifdef CONFIG_SPL_BUILD
|
||||
# ifdef CONFIG_SPL_CRC32_SUPPORT
|
||||
# define IMAGE_ENABLE_CRC32 1
|
||||
# endif
|
||||
# ifdef CONFIG_SPL_MD5_SUPPORT
|
||||
# define IMAGE_ENABLE_MD5 1
|
||||
# endif
|
||||
# ifdef CONFIG_SPL_SHA1_SUPPORT
|
||||
# define IMAGE_ENABLE_SHA1 1
|
||||
# endif
|
||||
# ifdef CONFIG_SPL_SHA256_SUPPORT
|
||||
# define IMAGE_ENABLE_SHA256 1
|
||||
# endif
|
||||
# define IMAGE_ENABLE_CRC32 CONFIG_IS_ENABLED(SPL_CRC32_SUPPORT)
|
||||
# define IMAGE_ENABLE_MD5 CONFIG_IS_ENABLED(SPL_MD5_SUPPORT)
|
||||
# define IMAGE_ENABLE_SHA1 CONFIG_IS_ENABLED(SPL_SHA1_SUPPORT)
|
||||
# define IMAGE_ENABLE_SHA256 CONFIG_IS_ENABLED(SPL_SHA256_SUPPORT)
|
||||
# else
|
||||
# define CONFIG_CRC32 /* FIT images need CRC32 support */
|
||||
# define CONFIG_MD5 /* and MD5 */
|
||||
|
@ -75,53 +71,12 @@ struct lmb;
|
|||
# define IMAGE_ENABLE_SHA1 1
|
||||
# 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
|
||||
|
||||
#ifndef IMAGE_ENABLE_MD5
|
||||
#define IMAGE_ENABLE_MD5 0
|
||||
#endif
|
||||
|
||||
#ifndef IMAGE_ENABLE_SHA1
|
||||
#define IMAGE_ENABLE_SHA1 0
|
||||
#endif
|
||||
|
||||
#ifndef IMAGE_ENABLE_SHA256
|
||||
#define IMAGE_ENABLE_SHA256 0
|
||||
#endif
|
||||
|
||||
#endif /* IMAGE_ENABLE_FIT */
|
||||
|
||||
#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
|
||||
# define IMAGE_ENABLE_RAMDISK_HIGH 1
|
||||
#else
|
||||
# define IMAGE_ENABLE_RAMDISK_HIGH 0
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
|
||||
# define IMAGE_BOOT_GET_CMDLINE 1
|
||||
#else
|
||||
# define IMAGE_BOOT_GET_CMDLINE 0
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_OF_BOARD_SETUP
|
||||
# define IMAGE_OF_BOARD_SETUP 1
|
||||
#else
|
||||
# define IMAGE_OF_BOARD_SETUP 0
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_OF_SYSTEM_SETUP
|
||||
# define IMAGE_OF_SYSTEM_SETUP 1
|
||||
#else
|
||||
# define IMAGE_OF_SYSTEM_SETUP 0
|
||||
#endif
|
||||
#define IMAGE_ENABLE_RAMDISK_HIGH CONFIG_IS_ENABLED(SYS_BOOT_RAMDISK_HIGH)
|
||||
#define IMAGE_BOOT_GET_CMDLINE CONFIG_IS_ENABLED(SYS_BOOT_GET_CMDLINE)
|
||||
#define IMAGE_OF_BOARD_SETUP CONFIG_IS_ENABLED(OF_BOARD_SETUP)
|
||||
#define IMAGE_OF_SYSTEM_SETUP CONFIG_IS_ENABLED(OF_SYSTEM_SETUP)
|
||||
|
||||
/*
|
||||
* Operating System Codes
|
||||
|
|
Loading…
Reference in a new issue