summaryrefslogtreecommitdiffstats
path: root/board/pb1x00
diff options
context:
space:
mode:
authorShinya Kuribayashi <shinya.kuribayashi@necel.com>2007-10-21 10:55:36 +0900
committerShinya Kuribayashi <skuribay@ruby.dti.ne.jp>2007-10-21 10:55:36 +0900
commitcbf2323b5b8285ea01acba7bbb905a3162d9b021 (patch)
tree9a8c8d8a083929ca33886c7a7506b41c9741a5c7 /board/pb1x00
parente5f325fec5b48ae705c89522923ba5a2e37cd5c7 (diff)
downloadblackbird-obmc-uboot-cbf2323b5b8285ea01acba7bbb905a3162d9b021.tar.gz
blackbird-obmc-uboot-cbf2323b5b8285ea01acba7bbb905a3162d9b021.zip
[MIPS] u-boot.lds: Fix __got_start and __got_end
Ensure that __got_start points to top of the `.got', and __got_end points to bottom as well, so that we never fail to count num_got_entries. Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
Diffstat (limited to 'board/pb1x00')
-rw-r--r--board/pb1x00/u-boot.lds8
1 files changed, 5 insertions, 3 deletions
diff --git a/board/pb1x00/u-boot.lds b/board/pb1x00/u-boot.lds
index 865be77bf3..7329e6aaa0 100644
--- a/board/pb1x00/u-boot.lds
+++ b/board/pb1x00/u-boot.lds
@@ -45,9 +45,11 @@ SECTIONS
_gp = ALIGN(16);
- __got_start = .;
- .got : { *(.got) }
- __got_end = .;
+ .got : {
+ __got_start = .;
+ *(.got)
+ __got_end = .;
+ }
.sdata : { *(.sdata) }
OpenPOWER on IntegriCloud