Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 15 May 2021 17:15:57 GMT
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: d80d28ff5ba7 - main - sysutils/edk2: Restrict building on aarch64 and amd64
Message-ID:  <202105151715.14FHFv57096730@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by manu:

URL: https://cgit.FreeBSD.org/ports/commit/?id=d80d28ff5ba7c2af9e0eed882abb922df658afac

commit d80d28ff5ba7c2af9e0eed882abb922df658afac
Author:     Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2021-05-15 17:15:36 +0000
Commit:     Emmanuel Vadot <manu@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105151715.14FHFv57096730>