svn commit: r262403 - head/sys/boot/common

Robert Watson rwatson at FreeBSD.org
Sun Feb 23 22:11:27 UTC 2014


Author: rwatson
Date: Sun Feb 23 22:11:26 2014
New Revision: 262403
URL: http://svnweb.freebsd.org/changeset/base/262403

Log:
  On mips64, built 64-bit ELF support.
  
  MFC after:	3 weeks
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/boot/common/Makefile.inc

Modified: head/sys/boot/common/Makefile.inc
==============================================================================
--- head/sys/boot/common/Makefile.inc	Sun Feb 23 22:10:25 2014	(r262402)
+++ head/sys/boot/common/Makefile.inc	Sun Feb 23 22:11:26 2014	(r262403)
@@ -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)


More information about the svn-src-head mailing list