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

board: cogent: include header files in a more natural way

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
master
Masahiro Yamada 12 years ago committed by Tom Rini
parent e63510d1cb
commit 0298793dd9
  1. 12
      board/cogent/config.mk
  2. 2
      board/cogent/dipsw.c
  3. 2
      board/cogent/flash.c
  4. 2
      board/cogent/lcd.c
  5. 10
      board/cogent/mb.c
  6. 2
      board/cogent/serial.c

@ -1,12 +0,0 @@
#
# (C) Copyright 2000
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
# SPDX-License-Identifier: GPL-2.0+
#
#
# Cogent Modular Architecture
#
PLATFORM_CPPFLAGS += -I$(TOPDIR)

@ -1,5 +1,5 @@
#include <common.h>
#include <board/cogent/dipsw.h>
#include "dipsw.h"
unsigned char
dipsw_raw(void)

@ -6,7 +6,7 @@
*/
#include <common.h>
#include <board/cogent/flash.h>
#include "flash.h"
#include <linux/compiler.h>
flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */

@ -48,7 +48,7 @@
#include <common.h>
#include <stdarg.h>
#include <board/cogent/lcd.h>
#include "lcd.h"
static char lines[2][LCD_LINE_LENGTH+1];
static int curline;

@ -6,11 +6,11 @@
*/
#include <common.h>
#include <board/cogent/dipsw.h>
#include <board/cogent/lcd.h>
#include <board/cogent/rtc.h>
#include <board/cogent/par.h>
#include <board/cogent/pci.h>
#include "dipsw.h"
#include "lcd.h"
#include "rtc.h"
#include "par.h"
#include "pci.h"
/* ------------------------------------------------------------------------- */

@ -4,7 +4,7 @@
*/
#include <common.h>
#include <board/cogent/serial.h>
#include "serial.h"
#include <serial.h>
#include <linux/compiler.h>

Loading…
Cancel
Save