From: Jon Loeliger Date: Tue, 12 Dec 2006 17:02:20 +0000 (-0600) Subject: Fix 8641HPCN problem with ld version 2.16 X-Git-Tag: v1.3.0-rc1~130^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6eb1df835191d8ce4b81d5af40fa8e0fbe78e997;p=u-boot Fix 8641HPCN problem with ld version 2.16 (Dot outside sections problem). This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540. Signed-off-by: Jon Loeliger --- diff --git a/board/mpc8641hpcn/u-boot.lds b/board/mpc8641hpcn/u-boot.lds index b34de8e0ac..13c1acf803 100644 --- a/board/mpc8641hpcn/u-boot.lds +++ b/board/mpc8641hpcn/u-boot.lds @@ -120,10 +120,12 @@ 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 = .;