mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
config: enable CMD_BMP when API+LCD is enabled
When both CONFIG_API and CONFIG_LCD are enabled, the API code calls lcd_display_bitmap(). That isn't compiled unless either CONFIG_CMD_BMP or CONFIG_SPLASH_SCREEN is enabled. In order to prevent build problems, have config_fallbacks.h enable CONFIG_CMD_BMP when both API and LCD are enabled. Signed-off-by: Stephen Warren <swarren@nvidia.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
e1ae71d8f4
commit
264e0e591b
1 changed files with 4 additions and 0 deletions
|
@ -71,6 +71,10 @@
|
|||
#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
|
||||
|
|
Loading…
Add table
Reference in a new issue