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

Merge branch 'master' of git://git.denx.de/u-boot-video

master
Tom Rini 11 years ago
commit 6393c43c18
  1. 9
      drivers/video/cfb_console.c

@ -1160,10 +1160,19 @@ static void video_putc(struct stdio_dev *dev, const char c)
static void video_puts(struct stdio_dev *dev, const char *s)
{
int flush = cfb_do_flush_cache;
int count = strlen(s);
/* temporarily disable cache flush */
cfb_do_flush_cache = 0;
while (count--)
video_putc(dev, *s++);
if (flush) {
cfb_do_flush_cache = flush;
flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
}
}
/*

Loading…
Cancel
Save