From 30dd368aa79ccb2a5062be34c9f99b867a3c2b94 Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Tue, 14 Apr 2015 10:41:57 +0000 Subject: [PATCH] Fix the arm64 MACHINE_CPUARCH value in the efi fdt glue code. Sponsored by: The FreeBSD Foundation --- sys/boot/efi/fdt/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/boot/efi/fdt/Makefile b/sys/boot/efi/fdt/Makefile index 8d008e25b689..19a4c49f0d5f 100644 --- a/sys/boot/efi/fdt/Makefile +++ b/sys/boot/efi/fdt/Makefile @@ -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