diff options
author | wdenk <wdenk> | 2003-06-29 21:03:46 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-29 21:03:46 +0000 |
commit | b0fce99bfc116c2ddb4506268d6e4a0a7054478d (patch) | |
tree | 6a11d99f1e350d9046c1c0e17298fa2bccd7db3e /board | |
parent | eeacb89cb311fe273fef0f20b2bacf589b36f8f4 (diff) | |
download | u-boot-imx-b0fce99bfc116c2ddb4506268d6e4a0a7054478d.zip u-boot-imx-b0fce99bfc116c2ddb4506268d6e4a0a7054478d.tar.gz u-boot-imx-b0fce99bfc116c2ddb4506268d6e4a0a7054478d.tar.bz2 |
Fix some missing commands, cleanup header files
(autoscript, bmp, bsp, fat, mmc, nand, portio, ...)
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 8b3a359..f0743fa 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 863a7e4..36f9491 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 f131e51..7ea91e6 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 a8d73cc..8be70d3 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 da60318..6d11240 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 627a53b..e0d0b17 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 2763a53..6a151e2 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" |