Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 Jun 2018 20:36:21 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r335775 - head/sys/arm64/linux
Message-ID:  <201806282036.w5SKaLK3040263@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Thu Jun 28 20:36:21 2018
New Revision: 335775
URL: https://svnweb.freebsd.org/changeset/base/335775

Log:
  Add stub arm64 linuxulator VDSO ldscript
  
  This needs to be revisited with the VDSO implementation, but is
  sufficient to allow the linux64 module to build on arm64 for testing
  and development.
  
  Sponsored by:	Turing Robotic Industries

Added:
  head/sys/arm64/linux/linux_vdso.lds.s   (contents, props changed)

Added: head/sys/arm64/linux/linux_vdso.lds.s
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/arm64/linux/linux_vdso.lds.s	Thu Jun 28 20:36:21 2018	(r335775)
@@ -0,0 +1,22 @@
+/*
+ * Stub arm64 vdso linker script.
+ * LINUXTODO: update along with VDSO implementation
+ *
+ * $FreeBSD$
+ */
+
+SECTIONS
+{
+	. = . + SIZEOF_HEADERS;
+	.text		: { *(.text*) }
+	.rodata		: { *(.rodata*) }
+	.hash		: { *(.hash) }
+	.gnu.hash	: { *(.gnu.hash) }
+	.dynsym		: { *(.dynsym) }
+	.dynstr		: { *(.dynstr) }
+	.gnu.version	: { *(.gnu.version) }
+	.gnu.version_d	: { *(.gnu.version_d) }
+	.gnu.version_r	: { *(.gnu.version_r) }
+	.data		: { *(.data*) }
+	.dynamic	: { *(.dynamic) }
+}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806282036.w5SKaLK3040263>