diff options
author | Mark Salter <msalter@redhat.com> | 2013-08-23 16:16:42 +0100 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2013-08-27 17:34:09 +0100 |
commit | c80b7ee8520606f77fbc8ced870c96659053269e (patch) | |
tree | 75d31777b2da73b34ba3bdc201396bf14e86727c /arch/arm64/kernel/vmlinux.lds.S | |
parent | 2600e130b3c90c8d6c13229d3d3a14dcb898a87b (diff) |
arm64: move elf notes into readonly segment
The current vmlinux.lds.S places the notes sections between the
end of rw data and start of bss. This means that _edata doesn't
really point to the end of data. Since notes are read-only, this
patch moves them to the read-only segment so that _edata does
point to the end of initialized rw data.
Signed-off-by: Mark Salter <msalter@redhat.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/arm64/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/arm64/kernel/vmlinux.lds.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm64/kernel/vmlinux.lds.S b/arch/arm64/kernel/vmlinux.lds.S index f5e55747242..f8ab9d8e2ea 100644 --- a/arch/arm64/kernel/vmlinux.lds.S +++ b/arch/arm64/kernel/vmlinux.lds.S @@ -71,6 +71,7 @@ SECTIONS RO_DATA(PAGE_SIZE) EXCEPTION_TABLE(8) + NOTES _etext = .; /* End of text and rodata section */ . = ALIGN(PAGE_SIZE); @@ -122,8 +123,6 @@ SECTIONS } _edata_loc = __data_loc + SIZEOF(.data); - NOTES - BSS_SECTION(0, 0, 0) _end = .; |