commit | 120ad97b1ec9bdddbba7d03336704b440045422e | [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 | 188cd541836be7d33485b78a082295aad20b24b2 [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)