commit | 38b9b7446ecd3a728bad3e1913a984628a7363fb | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@gentoo.org> | Tue Jan 19 21:02:00 2010 -0500 |
committer | Mike Frysinger <vapier@gentoo.org> | Wed Apr 07 01:08:42 2010 -0400 |
tree | 1c2c54264b2dbe5983dd24c887b3613f82964af2 | |
parent | 03f7053f70bc55b50c9d23e54f90d772419300a6 [diff] [blame] |
Blackfin: relax .data alignment The strictest alignment on Blackfin systems is 32bits (since that is the largest load instruction), so don't force 256byte alignment here. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
diff --git a/lib_blackfin/u-boot.lds.S b/lib_blackfin/u-boot.lds.S index 3be341f..9a757c6 100644 --- a/lib_blackfin/u-boot.lds.S +++ b/lib_blackfin/u-boot.lds.S
@@ -100,7 +100,7 @@ .data : { - . = ALIGN(256); + . = ALIGN(4); *(.data .data.*) *(.data1) *(.sdata)