From 347d368c806403f7bb57e0440110c2c7f6d7adc8 Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Sun, 23 Feb 2014 22:11:26 +0000 Subject: [PATCH] On mips64, built 64-bit ELF support. MFC after: 3 weeks Sponsored by: DARPA, AFRL --- sys/boot/common/Makefile.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/boot/common/Makefile.inc b/sys/boot/common/Makefile.inc index fab163072f3..a2e5f34d81c 100644 --- a/sys/boot/common/Makefile.inc +++ b/sys/boot/common/Makefile.inc @@ -18,6 +18,8 @@ SRCS+= load_elf32.c reloc_elf32.c SRCS+= load_elf64.c reloc_elf64.c .elif ${MACHINE_CPUARCH} == "sparc64" SRCS+= load_elf64.c reloc_elf64.c +.elif ${MACHINE_ARCH} == "mips64" +SRCS+= load_elf64.c reloc_elf64.c .endif .if defined(LOADER_NET_SUPPORT)