svn commit: r347795 - head/sys/arm64/arm64

Justin Hibbits jhibbits at FreeBSD.org
Thu May 16 17:04:32 UTC 2019


Author: jhibbits
Date: Thu May 16 17:04:29 2019
New Revision: 347795
URL: https://svnweb.freebsd.org/changeset/base/347795

Log:
  arm64: Add the rename interpreter path for compat32 ld-elf
  
  Let arm64 and arm32 dynamic binaries coexist.  Match all other compat32
  archs.
  
  Reviewed by:	manu
  Sponsored by:	Juniper Networks, Inc

Modified:
  head/sys/arm64/arm64/elf32_machdep.c

Modified: head/sys/arm64/arm64/elf32_machdep.c
==============================================================================
--- head/sys/arm64/arm64/elf32_machdep.c	Thu May 16 17:04:15 2019	(r347794)
+++ head/sys/arm64/arm64/elf32_machdep.c	Thu May 16 17:04:29 2019	(r347795)
@@ -115,7 +115,7 @@ static Elf32_Brandinfo freebsd32_brand_info = {
 	.emul_path	= NULL,
 	.interp_path	= "/libexec/ld-elf.so.1",
 	.sysvec		= &elf32_freebsd_sysvec,
-	.interp_newpath	= NULL,
+	.interp_newpath	= "/libexec/ld-elf32.so.1",
 	.brand_note	= &elf32_freebsd_brandnote,
 	.flags		= BI_CAN_EXEC_DYN | BI_BRAND_NOTE,
 	.header_supported= elf32_arm_abi_supported,


More information about the svn-src-all mailing list