From owner-svn-ports-head@freebsd.org Mon Jul 18 19:53:20 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B34AB9D559; Mon, 18 Jul 2016 19:53:20 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E8AEA1763; Mon, 18 Jul 2016 19:53:19 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6IJrJwM000435; Mon, 18 Jul 2016 19:53:19 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6IJrJEQ000434; Mon, 18 Jul 2016 19:53:19 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201607181953.u6IJrJEQ000434@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Mon, 18 Jul 2016 19:53:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418738 - head/sysutils/u-boot-pine64 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jul 2016 19:53:20 -0000 Author: brd Date: Mon Jul 18 19:53:18 2016 New Revision: 418738 URL: https://svnweb.freebsd.org/changeset/ports/418738 Log: Only build sysutils/u-boot-pine64 on > 10.0 since dtc is required. Approved by: bdrewery (implicit) Modified: head/sysutils/u-boot-pine64/Makefile Modified: head/sysutils/u-boot-pine64/Makefile ============================================================================== --- head/sysutils/u-boot-pine64/Makefile Mon Jul 18 19:47:27 2016 (r418737) +++ head/sysutils/u-boot-pine64/Makefile Mon Jul 18 19:53:18 2016 (r418738) @@ -30,6 +30,12 @@ MAKE_ARGS+= ARCH=arm \ PLAT=sun50iw1p1 \ CONFIG_EFI=y +.include + +.if ${OSVERSION} < 1000000 +IGNORE= requires FreeBSD 10 or later +.endif + post-extract: (cd ${WRKSRC}; ${EXTRACT_CMD} xvf ${DISTDIR}/firmware-pine64-20160329-6.1.src.rpm) ${RM} -fr ${WRKSRC}/arm-trusted-firmware @@ -50,4 +56,4 @@ do-install: ${CP} ${WRKSRC}/pine64.img ${STAGEDIR}/${PREFIX}/${U_BOOT_DIR}/ ${CP} ${DESCR} ${STAGEDIR}/${PREFIX}/${U_BOOT_DIR}/README -.include +.include