aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/efi
diff options
context:
space:
mode:
Diffstat (limited to 'sys/boot/efi')
-rw-r--r--sys/boot/efi/loader/Makefile1
-rw-r--r--sys/boot/efi/loader/arch/amd64/Makefile.inc3
-rw-r--r--sys/boot/efi/loader/arch/arm/Makefile.inc3
-rw-r--r--sys/boot/efi/loader/arch/i386/Makefile.inc3
4 files changed, 4 insertions, 6 deletions
diff --git a/sys/boot/efi/loader/Makefile b/sys/boot/efi/loader/Makefile
index 3f536c8787ba..da92c4363941 100644
--- a/sys/boot/efi/loader/Makefile
+++ b/sys/boot/efi/loader/Makefile
@@ -20,6 +20,7 @@ SRCS= autoload.c \
copy.c \
devicename.c \
main.c \
+ reloc.c \
smbios.c \
vers.c
diff --git a/sys/boot/efi/loader/arch/amd64/Makefile.inc b/sys/boot/efi/loader/arch/amd64/Makefile.inc
index 3f2b68e73136..006606d07f5a 100644
--- a/sys/boot/efi/loader/arch/amd64/Makefile.inc
+++ b/sys/boot/efi/loader/arch/amd64/Makefile.inc
@@ -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 \
diff --git a/sys/boot/efi/loader/arch/arm/Makefile.inc b/sys/boot/efi/loader/arch/arm/Makefile.inc
index 853c95774da1..4a3d543808e7 100644
--- a/sys/boot/efi/loader/arch/arm/Makefile.inc
+++ b/sys/boot/efi/loader/arch/arm/Makefile.inc
@@ -1,5 +1,4 @@
# $FreeBSD$
SRCS+= exec.c \
- start.S \
- reloc.c
+ start.S
diff --git a/sys/boot/efi/loader/arch/i386/Makefile.inc b/sys/boot/efi/loader/arch/i386/Makefile.inc
index b339f56825fe..2fce488b88f9 100644
--- a/sys/boot/efi/loader/arch/i386/Makefile.inc
+++ b/sys/boot/efi/loader/arch/i386/Makefile.inc
@@ -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 \