diff options
Diffstat (limited to 'arch/um/kernel/uml.lds.S')
| -rw-r--r-- | arch/um/kernel/uml.lds.S | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/um/kernel/uml.lds.S b/arch/um/kernel/uml.lds.S index 61dfd4fef75..163476a8cb1 100644 --- a/arch/um/kernel/uml.lds.S +++ b/arch/um/kernel/uml.lds.S @@ -30,6 +30,7 @@ SECTIONS  	_einittext = .;    }    . = ALIGN(4096); +    .text      :    {      *(.text) @@ -39,6 +40,12 @@ SECTIONS      /* .gnu.warning sections are handled specially by elf32.em.  */      *(.gnu.warning)      *(.gnu.linkonce.t*) + +    . = ALIGN(4096); +    __syscall_stub_start = .; +    *(.__syscall_stub*) +    __syscall_stub_end = .; +    . = ALIGN(4096);    }    #include "asm/common.lds.S"  |