Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Apr 2015 10:21:27 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r281433 - in head/sys/boot/efi/loader: . arch/amd64 arch/arm arch/i386
Message-ID:  <201504111021.t3BALR0P029265@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: andrew
Date: Sat Apr 11 10:21:26 2015
New Revision: 281433
URL: https://svnweb.freebsd.org/changeset/base/281433

Log:
  Move reloc.c to the top level Makefile as it has become generic.

Modified:
  head/sys/boot/efi/loader/Makefile
  head/sys/boot/efi/loader/arch/amd64/Makefile.inc
  head/sys/boot/efi/loader/arch/arm/Makefile.inc
  head/sys/boot/efi/loader/arch/i386/Makefile.inc

Modified: head/sys/boot/efi/loader/Makefile
==============================================================================
--- head/sys/boot/efi/loader/Makefile	Sat Apr 11 10:14:59 2015	(r281432)
+++ head/sys/boot/efi/loader/Makefile	Sat Apr 11 10:21:26 2015	(r281433)
@@ -20,6 +20,7 @@ SRCS=	autoload.c \
 	copy.c \
 	devicename.c \
 	main.c \
+	reloc.c \
 	smbios.c \
 	vers.c
 

Modified: head/sys/boot/efi/loader/arch/amd64/Makefile.inc
==============================================================================
--- head/sys/boot/efi/loader/arch/amd64/Makefile.inc	Sat Apr 11 10:14:59 2015	(r281432)
+++ head/sys/boot/efi/loader/arch/amd64/Makefile.inc	Sat Apr 11 10:21:26 2015	(r281433)
@@ -3,8 +3,7 @@
 SRCS+=	amd64_tramp.S \
 	start.S \
 	framebuffer.c \
-	elf64_freebsd.c \
-	reloc.c
+	elf64_freebsd.c
 
 .PATH:	${.CURDIR}/../../i386/libi386
 SRCS+=	nullconsole.c \

Modified: head/sys/boot/efi/loader/arch/arm/Makefile.inc
==============================================================================
--- head/sys/boot/efi/loader/arch/arm/Makefile.inc	Sat Apr 11 10:14:59 2015	(r281432)
+++ head/sys/boot/efi/loader/arch/arm/Makefile.inc	Sat Apr 11 10:21:26 2015	(r281433)
@@ -1,5 +1,4 @@
 # $FreeBSD$
 
 SRCS+=	exec.c \
-	start.S \
-	reloc.c
+	start.S

Modified: head/sys/boot/efi/loader/arch/i386/Makefile.inc
==============================================================================
--- head/sys/boot/efi/loader/arch/i386/Makefile.inc	Sat Apr 11 10:14:59 2015	(r281432)
+++ head/sys/boot/efi/loader/arch/i386/Makefile.inc	Sat Apr 11 10:21:26 2015	(r281433)
@@ -3,8 +3,7 @@
 SRCS+=	start.S \
 	efimd.c \
 	elf32_freebsd.c \
-	exec.c \
-	reloc.c
+	exec.c
 
 .PATH:	${.CURDIR}/../../i386/libi386
 SRCS+=	nullconsole.c \



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