fuze+: fix bootloader build

Change-Id: Ibe221d0f94ec4234ce1459073ba9ae77f6de162f
This commit is contained in:
Amaury Pouly 2012-12-26 02:50:41 +01:00
parent d9177c4c65
commit c96f580d63

View file

@ -29,9 +29,11 @@
#include "pinctrl-imx233.h" #include "pinctrl-imx233.h"
#include "dcp-imx233.h" #include "dcp-imx233.h"
#include "logf.h" #include "logf.h"
#ifndef BOOTLOADER
#include "button.h" #include "button.h"
#include "font.h" #include "font.h"
#include "action.h" #include "action.h"
#endif
#ifdef HAVE_LCD_ENABLE #ifdef HAVE_LCD_ENABLE
static bool lcd_on; static bool lcd_on;
@ -783,6 +785,7 @@ void lcd_blit_yuv(unsigned char * const src[3],
#endif #endif
} }
#ifndef BOOTLOADER
bool lcd_debug_screen(void) bool lcd_debug_screen(void)
{ {
lcd_setfont(FONT_SYSFIXED); lcd_setfont(FONT_SYSFIXED);
@ -813,3 +816,4 @@ bool lcd_debug_screen(void)
return true; return true;
} }
#endif