svn commit: r281433 - in head/sys/boot/efi/loader: . arch/amd64 arch/arm arch/i386

Andrew Turner andrew at FreeBSD.org
Sat Apr 11 10:21:29 UTC 2015


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 \


More information about the svn-src-head mailing list