summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorwdenk <wdenk>2003-06-29 21:03:46 +0000
committerwdenk <wdenk>2003-06-29 21:03:46 +0000
commitb0fce99bfc116c2ddb4506268d6e4a0a7054478d (patch)
tree6a11d99f1e350d9046c1c0e17298fa2bccd7db3e /board
parenteeacb89cb311fe273fef0f20b2bacf589b36f8f4 (diff)
downloadtalos-obmc-uboot-b0fce99bfc116c2ddb4506268d6e4a0a7054478d.tar.gz
talos-obmc-uboot-b0fce99bfc116c2ddb4506268d6e4a0a7054478d.zip
Fix some missing commands, cleanup header files
(autoscript, bmp, bsp, fat, mmc, nand, portio, ...)
Diffstat (limited to 'board')
-rw-r--r--board/evb64260/eth.c1
-rw-r--r--board/exbitgen/u-boot.lds4
-rw-r--r--board/hymod/bsp.c1
-rw-r--r--board/siemens/pcu_e/pcu_e.c1
-rw-r--r--board/sl8245/Makefile2
-rw-r--r--board/sl8245/u-boot.lds4
-rw-r--r--board/w7o/cmd_vpd.c1
7 files changed, 9 insertions, 5 deletions
diff --git a/board/evb64260/eth.c b/board/evb64260/eth.c
index 8b3a359238..f0743fa292 100644
--- a/board/evb64260/eth.c
+++ b/board/evb64260/eth.c
@@ -22,7 +22,6 @@ Skeleton NIC driver for Etherboot
#include <common.h>
#include <malloc.h>
-#include <cmd_bsp.h>
#include <galileo/gt64260R.h>
#include <galileo/core.h>
#include <asm/cache.h>
diff --git a/board/exbitgen/u-boot.lds b/board/exbitgen/u-boot.lds
index 863a7e423d..36f9491963 100644
--- a/board/exbitgen/u-boot.lds
+++ b/board/exbitgen/u-boot.lds
@@ -119,6 +119,10 @@ SECTIONS
_edata = .;
PROVIDE (edata = .);
+ __u_boot_cmd_start = .;
+ .u_boot_cmd : { *(.u_boot_cmd) }
+ __u_boot_cmd_end = .;
+
__start___ex_table = .;
__ex_table : { *(__ex_table) }
__stop___ex_table = .;
diff --git a/board/hymod/bsp.c b/board/hymod/bsp.c
index f131e51d4e..7ea91e6790 100644
--- a/board/hymod/bsp.c
+++ b/board/hymod/bsp.c
@@ -27,7 +27,6 @@
#include <command.h>
#include <net.h>
#include <asm/iopin_8260.h>
-#include <cmd_bsp.h>
/*-----------------------------------------------------------------------
* Board Special Commands: FPGA load/store, EEPROM erase
diff --git a/board/siemens/pcu_e/pcu_e.c b/board/siemens/pcu_e/pcu_e.c
index a8d73ccfe6..8be70d36d7 100644
--- a/board/siemens/pcu_e/pcu_e.c
+++ b/board/siemens/pcu_e/pcu_e.c
@@ -26,7 +26,6 @@
#include <commproc.h>
#include <i2c.h>
#include <command.h>
-#include <cmd_bsp.h>
/* ------------------------------------------------------------------------- */
diff --git a/board/sl8245/Makefile b/board/sl8245/Makefile
index da60318d7f..6d11240432 100644
--- a/board/sl8245/Makefile
+++ b/board/sl8245/Makefile
@@ -28,7 +28,7 @@ LIB = lib$(BOARD).a
OBJS = $(BOARD).o flash.o
$(LIB): .depend $(OBJS)
- $(AR) crv $@ $^
+ $(AR) crv $@ $(OBJS)
#########################################################################
diff --git a/board/sl8245/u-boot.lds b/board/sl8245/u-boot.lds
index 627a53b3b6..e0d0b17634 100644
--- a/board/sl8245/u-boot.lds
+++ b/board/sl8245/u-boot.lds
@@ -102,6 +102,10 @@ SECTIONS
_edata = .;
PROVIDE (edata = .);
+ __u_boot_cmd_start = .;
+ .u_boot_cmd : { *(.u_boot_cmd) }
+ __u_boot_cmd_end = .;
+
__start___ex_table = .;
__ex_table : { *(__ex_table) }
__stop___ex_table = .;
diff --git a/board/w7o/cmd_vpd.c b/board/w7o/cmd_vpd.c
index 2763a53d03..6a151e258f 100644
--- a/board/w7o/cmd_vpd.c
+++ b/board/w7o/cmd_vpd.c
@@ -27,7 +27,6 @@
#if (CONFIG_COMMANDS & CFG_CMD_BSP)
#include "vpd.h"
-#include "cmd_bsp.h"
/* ======================================================================
* Interpreter command to retrieve board specific Vital Product Data, "VPD"
OpenPOWER on IntegriCloud