From 97a8953538ac48240f0f9c4b102c9ecbfbac7c1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Mon, 12 Apr 2021 19:59:52 +0200 Subject: [PATCH] [CMAKE:GCC] Enforce file alignment on driver & kernel images --- sdk/cmake/init-section.lds | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/cmake/init-section.lds b/sdk/cmake/init-section.lds index a40433ae91b..51f8299dbd0 100644 --- a/sdk/cmake/init-section.lds +++ b/sdk/cmake/init-section.lds @@ -1,13 +1,13 @@ /* Make sure the INIT & .rsrc sections are at the end of the module so we can reclaim the space */ SECTIONS { - INIT BLOCK(__section_alignment__) : + INIT BLOCK(__section_alignment__) : ALIGN(__file_alignment__) { __init_start__ = . ; *(INIT) __init_end__ = . ; } - .rsrc BLOCK(__section_alignment__) : + .rsrc BLOCK(__section_alignment__) : ALIGN(__file_alignment__) { __rsrc_start__ = . ; *(.rsrc)