git: d80d28ff5ba7 - main - sysutils/edk2: Restrict building on aarch64 and amd64
Emmanuel Vadot
manu at FreeBSD.org
Sat May 15 17:15:58 UTC 2021
The branch main has been updated by manu:
URL: https://cgit.FreeBSD.org/ports/commit/?id=d80d28ff5ba7c2af9e0eed882abb922df658afac
commit d80d28ff5ba7c2af9e0eed882abb922df658afac
Author: Emmanuel Vadot <manu at FreeBSD.org>
AuthorDate: 2021-05-15 17:15:36 +0000
Commit: Emmanuel Vadot <manu at FreeBSD.org>
CommitDate: 2021-05-15 17:15:53 +0000
sysutils/edk2: Restrict building on aarch64 and amd64
The port only provides firmwares for those arch so it doesn't make sense to
build them for other arch.
If one day people wants to bootstrap an aarch64 image from a risc-v board
we will reconsider this change.
---
sysutils/edk2/Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sysutils/edk2/Makefile b/sysutils/edk2/Makefile
index 253578647ebd..a80b4379e20d 100644
--- a/sysutils/edk2/Makefile
+++ b/sysutils/edk2/Makefile
@@ -7,8 +7,8 @@ COMMENT= EDK2 Firmware for ${FLAVOR}
LICENSE= BSD3CLAUSE
-ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386 riscv64
-ONLY_FOR_ARCHS_REASON= source code is not yet ported to anything other than IA32, X64, ARM, AARCH64, RISCV64 or EBC
+ONLY_FOR_ARCHS= aarch64 amd64
+ONLY_FOR_ARCHS_REASON= This port only provides firmware for aarch64 and amd64 machine
PKGNAMESUFFIX= -${FLAVOR:C/_/-/g}
FLAVORS= macchiatobin rpi3 rpi4 xen
More information about the dev-commits-ports-all
mailing list