mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
arm: align data section to the supersection.
Offset based data section alignment is probably not applicable to any system
other than i386.
MFC after: 4 week
(cherry picked from commit 60e72eb16a)
This commit is contained in:
parent
d321b707d6
commit
83ad268f7e
1 changed files with 1 additions and 3 deletions
|
|
@ -74,9 +74,7 @@ SECTIONS
|
|||
_exidx_end = .;
|
||||
PROVIDE(exidx_end = .);
|
||||
|
||||
/* Adjust the address for the data segment. We want to adjust up to
|
||||
the same address within the page on the next page up. */
|
||||
. = ALIGN(0x1000) + (. & (0x1000 - 1)) ;
|
||||
. = ALIGN(0x10000);
|
||||
.data :
|
||||
{
|
||||
*(.data)
|
||||
|
|
|
|||
Loading…
Reference in a new issue