Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/c309365089283da1cb32c2a6eeaea9eb3f638f7c You should set ROOT_URL correctly, otherwise the web may not work correctly.

exynos: Allow tizen to be built without an LCD

This file currently requires an LCD. Adjust it to work without one.

Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
master
Simon Glass 9 years ago committed by Minkyu Kang
parent 141c74350d
commit c309365089
  1. 2
      include/libtizen.h
  2. 2
      lib/tizen/tizen.c

@ -10,6 +10,8 @@
#define HD_RESOLUTION 0
#ifdef CONFIG_LCD
void get_tizen_logo_info(vidinfo_t *vid);
#endif
#endif /* _LIBTIZEN_H_ */

@ -12,6 +12,7 @@
#include "tizen_logo_16bpp.h"
#include "tizen_logo_16bpp_gzip.h"
#ifdef CONFIG_LCD
void get_tizen_logo_info(vidinfo_t *vid)
{
switch (vid->vl_bpix) {
@ -31,3 +32,4 @@ void get_tizen_logo_info(vidinfo_t *vid)
break;
}
}
#endif

Loading…
Cancel
Save