* Code cleanup:
- remove trailing white space, trailing empty lines, C++ comments, etc.
- split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
* Patches by Kenneth Johansson, 25 Jun 2003:
- major rework of command structure
(work done mostly by Michal Cendrowski and Joakim Kristiansen)
diff --git a/board/gen860t/Makefile b/board/gen860t/Makefile
index 21bf040..dd7ecf1 100644
--- a/board/gen860t/Makefile
+++ b/board/gen860t/Makefile
@@ -28,7 +28,7 @@
OBJS = $(BOARD).o flash.o beeper.o fpga.o ioport.o
$(LIB): .depend $(OBJS)
- $(AR) crv $@ $^
+ $(AR) crv $@ $(OBJS)
#########################################################################
diff --git a/board/gen860t/README b/board/gen860t/README
index 7c03f93..7205afb 100644
--- a/board/gen860t/README
+++ b/board/gen860t/README
@@ -144,4 +144,3 @@
<outwater@eskimo.com>
vim: set ts=4 sw=4 tw=78:
-
diff --git a/board/gen860t/u-boot-flashenv.lds b/board/gen860t/u-boot-flashenv.lds
index e95a6a1..f46c3143 100644
--- a/board/gen860t/u-boot-flashenv.lds
+++ b/board/gen860t/u-boot-flashenv.lds
@@ -121,7 +121,7 @@
*(.bss)
*(COMMON)
}
-
+
_end = . ;
PROVIDE (end = .);
diff --git a/board/gen860t/u-boot.lds b/board/gen860t/u-boot.lds
index b7b190e..d4c258f 100644
--- a/board/gen860t/u-boot.lds
+++ b/board/gen860t/u-boot.lds
@@ -101,6 +101,11 @@
_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 = .;