From owner-svn-ports-all@freebsd.org Sat Jul 27 14:57:26 2019 Return-Path: Delivered-To: svn-ports-all@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 25B19BB861; Sat, 27 Jul 2019 14:57:26 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0732888EC1; Sat, 27 Jul 2019 14:57:26 +0000 (UTC) (envelope-from manu@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ED75BFB3; Sat, 27 Jul 2019 14:57:25 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x6REvPa8089063; Sat, 27 Jul 2019 14:57:25 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x6REvPRO089061; Sat, 27 Jul 2019 14:57:25 GMT (envelope-from manu@FreeBSD.org) Message-Id: <201907271457.x6REvPRO089061@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Sat, 27 Jul 2019 14:57:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r507460 - in head/sysutils: u-boot-firefly-rk3399 u-boot-master X-SVN-Group: ports-head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: in head/sysutils: u-boot-firefly-rk3399 u-boot-master X-SVN-Commit-Revision: 507460 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0732888EC1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.92 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.92)[-0.923,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jul 2019 14:57:26 -0000 Author: manu Date: Sat Jul 27 14:57:25 2019 New Revision: 507460 URL: https://svnweb.freebsd.org/changeset/ports/507460 Log: sysutils/u-boot-firefly-rk3399: Bump portrevision as we now use miniloader Since we now use the miniloader instead of SPL bump portrevision for this port. Modified: head/sysutils/u-boot-firefly-rk3399/Makefile head/sysutils/u-boot-master/Makefile Modified: head/sysutils/u-boot-firefly-rk3399/Makefile ============================================================================== --- head/sysutils/u-boot-firefly-rk3399/Makefile Sat Jul 27 14:55:59 2019 (r507459) +++ head/sysutils/u-boot-firefly-rk3399/Makefile Sat Jul 27 14:57:25 2019 (r507460) @@ -2,6 +2,8 @@ MASTERDIR= ${.CURDIR}/../u-boot-master +U_BOOT_SLAVE_PORTREVISION_2019.07= 1 + MODEL= firefly-rk3399 BOARD_CONFIG= firefly-rk3399_defconfig FAMILY= rk3399 Modified: head/sysutils/u-boot-master/Makefile ============================================================================== --- head/sysutils/u-boot-master/Makefile Sat Jul 27 14:55:59 2019 (r507459) +++ head/sysutils/u-boot-master/Makefile Sat Jul 27 14:57:25 2019 (r507460) @@ -114,6 +114,11 @@ UBOOT_VERSION=${UBOOT_VERSION_${FAMILY:tu}} .endif UBOOT_VERSION?= 2019.07 +# If a slave port defines a PORTREVISION use it +.if defined(U_BOOT_SLAVE_PORTREVISION_${UBOOT_VERSION}) +PORTREVISION= ${U_BOOT_SLAVE_PORTREVISION_${UBOOT_VERSION}} +.endif + .if !defined(UBOOT_PLIST) && defined(UBOOT_PLIST_${FAMILY:tu}) UBOOT_PLIST=${UBOOT_PLIST_${FAMILY:tu}} .endif