diff options
author | Igor Grinberg <grinberg@compulab.co.il> | 2014-11-03 11:32:20 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-06 11:04:40 -0500 |
commit | f4a40f05f504407a036e2beee88ce17930d5d45c (patch) | |
tree | c96304c36eb3837b13562ebe6a787ce6d29dd911 /board/compulab/common/Makefile | |
parent | 959bc1d5fa83eab057f12cb5ef79bd37ec98eb83 (diff) | |
download | u-boot-f4a40f05f504407a036e2beee88ce17930d5d45c.tar.gz |
omap3: cm-t35: extract the splash code from board
The splash screen loading code can be reused by other compulab boards.
For now extract it to a common location for further reuse.
This also switches the splash code dependency from CONFIG_LCD to
CONFIG_SPLASH_SCREEN as it should normally be.
In addition this patch fixes the accidental dependency of the
get_board_mem_timings() function on CONFIG_LCD, by just moving the
splash code and leaving the above function intact.
Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/compulab/common/Makefile')
-rw-r--r-- | board/compulab/common/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/compulab/common/Makefile b/board/compulab/common/Makefile index e343bf0210..78237d1f12 100644 --- a/board/compulab/common/Makefile +++ b/board/compulab/common/Makefile @@ -9,3 +9,4 @@ obj-y += common.o obj-$(CONFIG_SYS_I2C) += eeprom.o obj-$(CONFIG_LCD) += omap3_display.o +obj-$(CONFIG_SPLASH_SCREEN) += splash.o |