From owner-freebsd-uboot@freebsd.org Mon May 18 01:47:23 2020 Return-Path: Delivered-To: freebsd-uboot@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3E44E2FBEC0 for ; Mon, 18 May 2020 01:47:23 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 49QMMb0JgQz42ZL for ; Mon, 18 May 2020 01:47:23 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mailman.nyi.freebsd.org (Postfix) id 0888D2FBEBF; Mon, 18 May 2020 01:47:23 +0000 (UTC) Delivered-To: uboot@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0850D2FBD12 for ; Mon, 18 May 2020 01:47:23 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [18.222.6.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49QMMY67Xxz42gL; Mon, 18 May 2020 01:47:21 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (unknown [18.188.142.31]) by mail.soaustin.net (Postfix) with ESMTPSA id F421013E42; Mon, 18 May 2020 01:47:20 +0000 (UTC) Date: Mon, 18 May 2020 01:47:19 +0000 From: Mark Linimon To: uboot@FreeBSD.org Cc: linimon@FreeBSD.org, pkubaj@FreeBSD.org Subject: [linimon@FreeBSD.org: svn commit: r535706 - head/sysutils/u-boot-tools] Message-ID: <20200518014719.GM26937@lonesome.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-Rspamd-Queue-Id: 49QMMY67Xxz42gL X-Spamd-Bar: + Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=none (mx1.freebsd.org: domain of linimon@lonesome.com has no SPF policy when checking 18.222.6.11) smtp.mailfrom=linimon@lonesome.com X-Spamd-Result: default: False [1.18 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; ARC_NA(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_SPAM_SHORT(0.48)[0.484]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; DMARC_NA(0.00)[lonesome.com]; AUTH_NA(1.00)[]; RCVD_IN_DNSWL_MED(-0.20)[18.222.6.11:from]; R_SPF_NA(0.00)[no SPF record]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:16509, ipnet:18.220.0.0/14, country:US]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-Mailman-Approved-At: Mon, 18 May 2020 18:22:27 +0000 X-BeenThere: freebsd-uboot@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Discussions about the use of uboot with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 May 2020 01:47:23 -0000 FYI mcl ----- Forwarded message from Mark Linimon ----- Date: Mon, 18 May 2020 01:45:04 +0000 (UTC) From: Mark Linimon To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r535706 - head/sysutils/u-boot-tools Author: linimon Date: Mon May 18 01:45:04 2020 New Revision: 535706 URL: https://svnweb.freebsd.org/changeset/ports/535706 Log: Mark as BROKEN on powerpc64: include/config_distro_bootcmd.h:279:3: sandbox EFI support is only supported on ARM and x86 This is even after adding the fix for 12-STABLE of compiler:c11 to USES, which at least allows the build to get that far. I took a look at this one time, thinking it would be easy, but I was not able to come up with a quick answer. Approved by: portmgr (tier-2 blanket) Modified: head/sysutils/u-boot-tools/Makefile Modified: head/sysutils/u-boot-tools/Makefile ============================================================================== --- head/sysutils/u-boot-tools/Makefile Mon May 18 01:38:12 2020 (r535705) +++ head/sysutils/u-boot-tools/Makefile Mon May 18 01:45:04 2020 (r535706) @@ -12,10 +12,12 @@ COMMENT= U-boot related tools LICENSE= GPLv2 -USES= bison tar:bzip2 gmake python:2.7,build ssl +BROKEN_powerpc64= fails to build: include/config_distro_bootcmd.h:279:3: sandbox EFI support is only supported on ARM and x86 BROKEN_SSL= libressl BROKEN_SSL_REASON_libressl= not supported by the upstream + +USES= bison compiler:c11 gmake python:2.7,build ssl tar:bzip2 CONFLICTS= uboot-mkimage ALL_TARGET= tools-only ----- End forwarded message -----