base: increase bss alignment to 8 bytes

Fixes #4127
This commit is contained in:
Christian Prochaska 2021-04-09 02:21:50 +02:00 committed by Norman Feske
parent 84e4cbb54c
commit 66e8f8d764

View File

@ -114,10 +114,10 @@ SECTIONS
} : rw
.bss : {
_bss_start = ALIGN(4);
_bss_start = ALIGN(8);
*(.bss .bss.* .gnu.linkonce.b.* COMMON)
}
_bss_end = ALIGN(4);
_bss_end = ALIGN(8);
/* separate location for the binaries of the boot modules */
.data.boot_modules_binaries : { *(.data.boot_modules_binaries) } : boot