mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-30 06:32:39 +02:00
kern: fix bss end align (now gets through kernelldr on hardware)
This commit is contained in:
parent
24d41ce55e
commit
308ddecc9c
@ -157,10 +157,11 @@ SECTIONS
|
|||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN(8);
|
. = ALIGN(8);
|
||||||
} : data
|
} : data
|
||||||
__bss_end__ = .;
|
|
||||||
|
|
||||||
. = ALIGN(0x1000);
|
. = ALIGN(0x1000);
|
||||||
|
|
||||||
|
__bss_end__ = .;
|
||||||
|
|
||||||
__end__ = ABSOLUTE(.);
|
__end__ = ABSOLUTE(.);
|
||||||
|
|
||||||
/* ==================
|
/* ==================
|
||||||
|
Loading…
Reference in New Issue
Block a user