diff options
author | Kevin Lo <kevlo@cvs.openbsd.org> | 2022-01-07 13:56:55 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@cvs.openbsd.org> | 2022-01-07 13:56:55 +0000 |
commit | 393044a3c010b05f81892c2737b0cfc31578e604 (patch) | |
tree | 7d357da4746fb966bf9af78308b97248b74d3d9d /sys/arch/arm64/conf/kern.ldscript | |
parent | 6bc0758644b7581b6c79f2ea1a808fa4f7cc5e4d (diff) |
.glue_7 is used for arm code calling thumb code, and .glue_7t is used for
thumb code calling arm code, no need to put these input sections at the text
output section.
ok jsg@ kettenis@
Diffstat (limited to 'sys/arch/arm64/conf/kern.ldscript')
-rw-r--r-- | sys/arch/arm64/conf/kern.ldscript | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/arm64/conf/kern.ldscript b/sys/arch/arm64/conf/kern.ldscript index f2d37646aca..d93afaa16ba 100644 --- a/sys/arch/arm64/conf/kern.ldscript +++ b/sys/arch/arm64/conf/kern.ldscript @@ -1,4 +1,4 @@ -/* $OpenBSD: kern.ldscript,v 1.10 2021/06/27 21:39:55 kettenis Exp $ */ +/* $OpenBSD: kern.ldscript,v 1.11 2022/01/07 13:56:54 kevlo Exp $ */ /* $NetBSD: ldscript.evbarm,v 1.2 2003/03/05 23:54:22 thorpej Exp $ */ OUTPUT_ARCH(aarch64) @@ -24,7 +24,6 @@ SECTIONS { *(.text .text.*) *(.stub) - *(.glue_7t) *(.glue_7) } :text =0 PROVIDE (_etext = .); PROVIDE (etext = .); |