aboutsummaryrefslogtreecommitdiff
path: root/board/musenki
diff options
context:
space:
mode:
authorwdenk <wdenk>2003-06-27 21:31:46 +0000
committerwdenk <wdenk>2003-06-27 21:31:46 +0000
commit8bde7f776c77b343aca29b8c7b58464d915ac245 (patch)
tree20f1fd99975215e7c658454a15cdb4ed4694e2d4 /board/musenki
parent993cad9364c6b87ae429d1ed1130d8153f6f027e (diff)
* Code cleanup:LABEL_2003_06_27_2340
- 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)
Diffstat (limited to 'board/musenki')
-rw-r--r--board/musenki/Makefile2
-rw-r--r--board/musenki/README5
-rw-r--r--board/musenki/flash.c1
-rw-r--r--board/musenki/u-boot.lds6
4 files changed, 7 insertions, 7 deletions
diff --git a/board/musenki/Makefile b/board/musenki/Makefile
index 2613292f4..24dc0264f 100644
--- a/board/musenki/Makefile
+++ b/board/musenki/Makefile
@@ -29,7 +29,7 @@ OBJS = $(BOARD).o flash.o
SOBJS =
$(LIB): .depend $(OBJS) $(SOBJS)
- $(AR) crv $@ $^
+ $(AR) crv $@ $(OBJS)
#########################################################################
diff --git a/board/musenki/README b/board/musenki/README
index 4a1955dc3..135a01aa0 100644
--- a/board/musenki/README
+++ b/board/musenki/README
@@ -68,12 +68,11 @@ run - run commands in an environment variable
saveenv - save environment variables to persistent storage
setenv - set environment variables
tftpboot- boot image via network using TFTP protocol
- and env variables ipaddr and serverip
+ and env variables ipaddr and serverip
version - print monitor version
? - alias for 'help'
-
x.x.x CONFIG_CONS_INDEX 2
**** NOT TESTED ****
@@ -167,7 +166,6 @@ Bank # 2: missing or unknown FLASH type
=>
-
x.x.x Flash Programming
@@ -298,4 +296,3 @@ Hit any key to exit ...
x.x Image download and run over ethernet interface
untested (not working yet, actually)
-
diff --git a/board/musenki/flash.c b/board/musenki/flash.c
index 1e8bfff8c..cd33d8ed3 100644
--- a/board/musenki/flash.c
+++ b/board/musenki/flash.c
@@ -56,7 +56,6 @@ static int write_data (flash_info_t *info, uchar *dest, uchar data);
static void flash_get_offsets (ulong base, flash_info_t *info);
-
/*
* don't ask. its stupid, but more than one soul has had to live with this mistake
* "swaptab[i]" is the value of "i" with the bits reversed.
diff --git a/board/musenki/u-boot.lds b/board/musenki/u-boot.lds
index cf23407ca..9d949b5de 100644
--- a/board/musenki/u-boot.lds
+++ b/board/musenki/u-boot.lds
@@ -103,6 +103,11 @@ 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 = .;
@@ -126,4 +131,3 @@ SECTIONS
_end = . ;
PROVIDE (end = .);
}
-