diff options
Diffstat (limited to 'arch/x86/x15.lds.S')
-rw-r--r-- | arch/x86/x15.lds.S | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/x15.lds.S b/arch/x86/x15.lds.S index 0bf809b9..352ebf4a 100644 --- a/arch/x86/x15.lds.S +++ b/arch/x86/x15.lds.S @@ -44,6 +44,12 @@ SECTIONS .init ALIGN(PAGE_SIZE) : AT(BOOT_VTOP(ADDR(.init))) { *(.init.text) *(.init.data) + + . = ALIGN(64); + _init_ops = .; + *(.init.ops) + _init_ops_end = .; + } : init . = ALIGN(PAGE_SIZE); |