mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
arm: pxa: colibri_pxa270: add optional lcd support
Add optional LCD support. Note that depending on the toolchain used one might have to drop some other features to stay within the 0x40000 size limit. Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
This commit is contained in:
parent
d817889b1e
commit
4f9bbd9e69
1 changed files with 13 additions and 0 deletions
|
@ -19,6 +19,9 @@
|
|||
/* Avoid overwriting factory configuration block */
|
||||
#define CONFIG_BOARD_SIZE_LIMIT 0x40000
|
||||
|
||||
/* We will never enable dcache because we have to setup MMU first */
|
||||
#define CONFIG_SYS_DCACHE_OFF
|
||||
|
||||
/*
|
||||
* Environment settings
|
||||
*/
|
||||
|
@ -56,6 +59,16 @@
|
|||
#define CONFIG_CMD_MMC
|
||||
#define CONFIG_CMD_USB
|
||||
|
||||
/* LCD support */
|
||||
#ifdef CONFIG_LCD
|
||||
#define CONFIG_PXA_LCD
|
||||
#define CONFIG_PXA_VGA
|
||||
#define CONFIG_SYS_WHITE_ON_BLACK
|
||||
#define CONFIG_CONSOLE_SCROLL_LINES 10
|
||||
#define CONFIG_CMD_BMP
|
||||
#define CONFIG_LCD_LOGO
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Networking Configuration
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue