X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fconfig_fallbacks.h;h=ddfe0450d21c780e44cacf4f26b91d1e15a059a9;hb=ed09a554be3ce7974cf61715a286a1b6b547fdbd;hp=e6fb47be0bd71fe2dd9ca06b7586ca82a3d57b21;hpb=0f507779ca00d90cdd4bcc8252630370339b7ea6;p=u-boot diff --git a/include/config_fallbacks.h b/include/config_fallbacks.h index e6fb47be0b..ddfe0450d2 100644 --- a/include/config_fallbacks.h +++ b/include/config_fallbacks.h @@ -71,12 +71,30 @@ #define CONFIG_LIB_RAND #endif +#if defined(CONFIG_API) && defined(CONFIG_LCD) +#define CONFIG_CMD_BMP +#endif + #ifndef CONFIG_SYS_PROMPT #define CONFIG_SYS_PROMPT "=> " #endif -#ifndef CONFIG_SYS_HZ -#define CONFIG_SYS_HZ 1000 +#ifndef CONFIG_SYS_PBSIZE +#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + 128) +#endif + +#ifndef CONFIG_FIT_SIGNATURE +#define CONFIG_IMAGE_FORMAT_LEGACY +#endif + +#ifdef CONFIG_DISABLE_IMAGE_LEGACY +#undef CONFIG_IMAGE_FORMAT_LEGACY +#endif + +#ifdef CONFIG_DM_I2C +# ifdef CONFIG_SYS_I2C +# error "Cannot define CONFIG_SYS_I2C when CONFIG_DM_I2C is used" +# endif #endif #endif /* __CONFIG_FALLBACKS_H */