diff options
Diffstat (limited to 'board')
-rw-r--r-- | board/evb64260/eth.c | 1 | ||||
-rw-r--r-- | board/exbitgen/u-boot.lds | 4 | ||||
-rw-r--r-- | board/hymod/bsp.c | 1 | ||||
-rw-r--r-- | board/siemens/pcu_e/pcu_e.c | 1 | ||||
-rw-r--r-- | board/sl8245/Makefile | 2 | ||||
-rw-r--r-- | board/sl8245/u-boot.lds | 4 | ||||
-rw-r--r-- | board/w7o/cmd_vpd.c | 1 |
7 files changed, 9 insertions, 5 deletions
diff --git a/board/evb64260/eth.c b/board/evb64260/eth.c index 8b3a3592386..f0743fa292e 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 863a7e423d4..36f9491963a 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 f131e51d4e2..7ea91e6790c 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 a8d73ccfe68..8be70d36d74 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 da60318d7f4..6d112404328 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 627a53b3b60..e0d0b17634e 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 2763a53d03c..6a151e258f2 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" |