svn commit: r281525 - head/sys/boot/efi/fdt

Andrew Turner andrew at FreeBSD.org
Tue Apr 14 10:41:58 UTC 2015


Author: andrew
Date: Tue Apr 14 10:41:57 2015
New Revision: 281525
URL: https://svnweb.freebsd.org/changeset/base/281525

Log:
  Fix the arm64 MACHINE_CPUARCH value in the efi fdt glue code.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/boot/efi/fdt/Makefile

Modified: head/sys/boot/efi/fdt/Makefile
==============================================================================
--- head/sys/boot/efi/fdt/Makefile	Tue Apr 14 10:40:37 2015	(r281524)
+++ head/sys/boot/efi/fdt/Makefile	Tue Apr 14 10:41:57 2015	(r281525)
@@ -10,7 +10,7 @@ INTERNALLIB=
 SRCS=		efi_fdt.c
 
 CFLAGS+=	-ffreestanding -msoft-float
-.if ${MACHINE_CPUARCH} == "arm64"
+.if ${MACHINE_CPUARCH} == "aarch64"
 CFLAGS+=	-mgeneral-regs-only
 .endif
 


More information about the svn-src-head mailing list