diff options
Diffstat (limited to 'include/image.h')
| -rw-r--r-- | include/image.h | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/include/image.h b/include/image.h index dbbbee9071f..ecfce7215d2 100644 --- a/include/image.h +++ b/include/image.h @@ -35,10 +35,19 @@  #include <asm/byteorder.h>  #include <command.h> +  #ifndef USE_HOSTCC  #include <linux/string.h>  #include <asm/u-boot.h> + +/* new uImage format support enabled by default */ +#define CONFIG_FIT		1 +#define CONFIG_OF_LIBFDT	1 + +#if defined(CONFIG_FIT) && !defined(CONFIG_OF_LIBFDT) +#error "CONFIG_OF_LIBFDT not enabled, required by CONFIG_FIT!"  #endif +#endif /* USE_HOSTCC */  /*   * Operating System Codes | 
