diff options
author | Selvamuthukumar <selva.muthukumar@e-coninfotech.com> | 2008-10-16 22:54:03 +0530 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-11-18 23:13:16 +0100 |
commit | 9b827cf1720acda2473afa516956eab6f7cca9a1 (patch) | |
tree | 6e8db5b2a24c2f65ace2946a78207c1af0a43759 /board/freescale | |
parent | e0b0ec843085f96f4fe0738424835ee90e58bc00 (diff) |
Align end of bss by 4 bytes
Most of the bss initialization loop increments 4 bytes
at a time. And the loop end is checked for an 'equal'
condition. Make the bss end address aligned by 4, so
that the loop will end as expected.
Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/mpc7448hpc2/u-boot.lds | 1 | ||||
-rw-r--r-- | board/freescale/mpc8610hpcd/u-boot.lds | 1 | ||||
-rw-r--r-- | board/freescale/mpc8641hpcn/u-boot.lds | 1 | ||||
-rw-r--r-- | board/freescale/mx31ads/u-boot.lds | 2 |
4 files changed, 4 insertions, 1 deletions
diff --git a/board/freescale/mpc7448hpc2/u-boot.lds b/board/freescale/mpc7448hpc2/u-boot.lds index 68110ffd5bc..f3f6c544d3b 100644 --- a/board/freescale/mpc7448hpc2/u-boot.lds +++ b/board/freescale/mpc7448hpc2/u-boot.lds @@ -129,6 +129,7 @@ SECTIONS *(.dynbss) *(.bss) *(COMMON) + . = ALIGN(4); } _end = . ; PROVIDE (end = .); diff --git a/board/freescale/mpc8610hpcd/u-boot.lds b/board/freescale/mpc8610hpcd/u-boot.lds index b88138e193d..41274923d3d 100644 --- a/board/freescale/mpc8610hpcd/u-boot.lds +++ b/board/freescale/mpc8610hpcd/u-boot.lds @@ -128,6 +128,7 @@ SECTIONS *(.dynbss) *(.bss) *(COMMON) + . = ALIGN(4); } _end = . ; PROVIDE (end = .); diff --git a/board/freescale/mpc8641hpcn/u-boot.lds b/board/freescale/mpc8641hpcn/u-boot.lds index 4f884f987e2..6c9da1f3284 100644 --- a/board/freescale/mpc8641hpcn/u-boot.lds +++ b/board/freescale/mpc8641hpcn/u-boot.lds @@ -129,6 +129,7 @@ SECTIONS *(.dynbss) *(.bss) *(COMMON) + . = ALIGN(4); } _end = . ; PROVIDE (end = .); diff --git a/board/freescale/mx31ads/u-boot.lds b/board/freescale/mx31ads/u-boot.lds index 1c35fa614ef..e682f307f7e 100644 --- a/board/freescale/mx31ads/u-boot.lds +++ b/board/freescale/mx31ads/u-boot.lds @@ -65,6 +65,6 @@ SECTIONS . = ALIGN(4); __bss_start = .; - .bss : { *(.bss) } + .bss : { *(.bss) . = ALIGN(4); } _end = .; } |