diff options
author | Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> | 2007-10-27 15:00:24 +0900 |
---|---|---|
committer | Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> | 2007-11-17 18:54:15 +0900 |
commit | 662e5cb397249c3ea88a4c3255e9ccfc40b98d82 (patch) | |
tree | 7919330d6dca811d308479d0c1409c83278ac5e9 /board/gth2/u-boot.lds | |
parent | 5947f6999aafa7c54c1390983d264a8463dfea8e (diff) | |
download | u-boot-imx-662e5cb397249c3ea88a4c3255e9ccfc40b98d82.zip u-boot-imx-662e5cb397249c3ea88a4c3255e9ccfc40b98d82.tar.gz u-boot-imx-662e5cb397249c3ea88a4c3255e9ccfc40b98d82.tar.bz2 |
[MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
Diffstat (limited to 'board/gth2/u-boot.lds')
-rw-r--r-- | board/gth2/u-boot.lds | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/board/gth2/u-boot.lds b/board/gth2/u-boot.lds index 90432cb..ce53d9d 100644 --- a/board/gth2/u-boot.lds +++ b/board/gth2/u-boot.lds @@ -54,9 +54,11 @@ SECTIONS .sdata : { *(.sdata) } - __u_boot_cmd_start = .; - .u_boot_cmd : { *(.u_boot_cmd) } - __u_boot_cmd_end = .; + .u_boot_cmd : { + __u_boot_cmd_start = .; + *(.u_boot_cmd) + __u_boot_cmd_end = .; + } uboot_end_data = .; num_got_entries = (__got_end - __got_start) >> 2; |