diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2012-12-26 02:50:41 +0100 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2012-12-26 02:50:41 +0100 |
| commit | c96f580d63c6de4c949a8e9eddd5133d5d32ca77 (patch) | |
| tree | 565c0d59afdbddd225b71e21429e1db77743def3 | |
| parent | d9177c4c6526f9933bb910088e28eec6058a0dd7 (diff) | |
| download | rockbox-c96f580d63c6de4c949a8e9eddd5133d5d32ca77.zip rockbox-c96f580d63c6de4c949a8e9eddd5133d5d32ca77.tar.gz rockbox-c96f580d63c6de4c949a8e9eddd5133d5d32ca77.tar.bz2 rockbox-c96f580d63c6de4c949a8e9eddd5133d5d32ca77.tar.xz | |
fuze+: fix bootloader build
Change-Id: Ibe221d0f94ec4234ce1459073ba9ae77f6de162f
| -rw-r--r-- | firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c b/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c index 6ede0d3..34afc04 100644 --- a/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c +++ b/firmware/target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c @@ -29,9 +29,11 @@ #include "pinctrl-imx233.h" #include "dcp-imx233.h" #include "logf.h" +#ifndef BOOTLOADER #include "button.h" #include "font.h" #include "action.h" +#endif #ifdef HAVE_LCD_ENABLE static bool lcd_on; @@ -783,6 +785,7 @@ void lcd_blit_yuv(unsigned char * const src[3], #endif } +#ifndef BOOTLOADER bool lcd_debug_screen(void) { lcd_setfont(FONT_SYSFIXED); @@ -813,3 +816,4 @@ bool lcd_debug_screen(void) return true; } +#endif |