Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Sep 2020 19:07:06 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r547866 - head/sysutils/edk2
Message-ID:  <202009061907.086J76AX017293@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Sun Sep  6 19:07:06 2020
New Revision: 547866
URL: https://svnweb.freebsd.org/changeset/ports/547866

Log:
  Restrict only to architectures that the code claims to support:
  
    Python/TargetTool/TargetTool.py:  help="ARCHS is one of list: IA32, X64, ARM, AARCH64 or EBC, which replaces target.txt's TARGET_ARCH definition. To specify more archs, please repeat this option."
    Python/build/buildoptions.py:     help="ARCHS is one of list: IA32, X64, ARM, AARCH64, RISCV64 or EBC, which overrides target.txt's TARGET_ARCH definition. To specify more archs, please repeat this option."
  
  See also: BaseTools/Source/C/GNUmakefile.
  
  Result from attempt on powerpc64:
  
    Attempting to detect HOST_ARCH from 'uname -m': powerpc
    Could not detected HOST_ARCH from uname results
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/sysutils/edk2/Makefile

Modified: head/sysutils/edk2/Makefile
==============================================================================
--- head/sysutils/edk2/Makefile	Sun Sep  6 19:06:32 2020	(r547865)
+++ head/sysutils/edk2/Makefile	Sun Sep  6 19:07:06 2020	(r547866)
@@ -9,6 +9,9 @@ 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
+
 PKGNAMESUFFIX=	-${FLAVOR:C/_/-/g}
 FLAVORS=	macchiatobin rpi3 rpi4
 FLAVOR?=	macchiatobin



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