Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Apr 2020 18:46:43 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r532703 - in head/sysutils: u-boot-duovero u-boot-master u-boot-pandaboard u-boot-rock64 u-boot-rpi3 u-boot-rpi4
Message-ID:  <202004231846.03NIkhLH081187@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: manu
Date: Thu Apr 23 18:46:43 2020
New Revision: 532703
URL: https://svnweb.freebsd.org/changeset/ports/532703

Log:
  sysutils/u-boot: Update to 2020.04
  
  While here use python3 for it as it now works.
  Two slave ports have been marked broken :
  u-boot-pandaboard and u-boot-duovero
  Both of those boards have ~0 users in FreeBSD so if you are one of
  those raise your hand.

Modified:
  head/sysutils/u-boot-duovero/Makefile
  head/sysutils/u-boot-master/Makefile
  head/sysutils/u-boot-master/distinfo
  head/sysutils/u-boot-pandaboard/Makefile
  head/sysutils/u-boot-rock64/Makefile
  head/sysutils/u-boot-rpi3/Makefile
  head/sysutils/u-boot-rpi4/Makefile

Modified: head/sysutils/u-boot-duovero/Makefile
==============================================================================
--- head/sysutils/u-boot-duovero/Makefile	Thu Apr 23 18:42:44 2020	(r532702)
+++ head/sysutils/u-boot-duovero/Makefile	Thu Apr 23 18:46:43 2020	(r532703)
@@ -6,4 +6,6 @@ MODEL=		duovero
 BOARD_CONFIG=	duovero_defconfig
 FAMILY=		omap
 
+BROKEN=		Does not build anymore
+
 .include "${MASTERDIR}/Makefile"

Modified: head/sysutils/u-boot-master/Makefile
==============================================================================
--- head/sysutils/u-boot-master/Makefile	Thu Apr 23 18:42:44 2020	(r532702)
+++ head/sysutils/u-boot-master/Makefile	Thu Apr 23 18:46:43 2020	(r532703)
@@ -21,8 +21,8 @@ BUILD_DEPENDS+=	gsed:textproc/gsed \
 		mkimage:sysutils/u-boot-tools
 BUILD_DEPENDS+=	${COMPILER}:devel/${COMPILER}
 
-USES=		bison gmake python:2.7,build shebangfix tar:bz2
-BINARY_ALIAS=	bison=${LOCALBASE}/bin/bison dtc=${LOCALBASE}/bin/dtc sed=gsed swig=swig3.0 python2=python2.7
+USES=		bison gmake python:3.7,build shebangfix tar:bz2
+BINARY_ALIAS=	bison=${LOCALBASE}/bin/bison dtc=${LOCALBASE}/bin/dtc sed=gsed swig=swig3.0 python3=python3.7
 
 SHEBANG_FILES=	tools/binman/binman.py arch/arm/mach-rockchip/make_fit_atf.py
 SSP_UNSAFE=	yes
@@ -108,7 +108,7 @@ UBOOT_METADATA_ARMADA38X_RAW_BS=	512
 .if !defined(UBOOT_VERSION) && defined(UBOOT_VERSION_${FAMILY:tu})
 UBOOT_VERSION=${UBOOT_VERSION_${FAMILY:tu}}
 .endif
-UBOOT_VERSION?=	2019.10
+UBOOT_VERSION?=	2020.04
 
 # If a slave port defines a PORTREVISION use it
 .if defined(U_BOOT_SLAVE_PORTREVISION_${UBOOT_VERSION})

Modified: head/sysutils/u-boot-master/distinfo
==============================================================================
--- head/sysutils/u-boot-master/distinfo	Thu Apr 23 18:42:44 2020	(r532702)
+++ head/sysutils/u-boot-master/distinfo	Thu Apr 23 18:46:43 2020	(r532703)
@@ -1,6 +1,6 @@
-TIMESTAMP = 1584323217
-SHA256 (u-boot/u-boot-2019.10.tar.bz2) = 8d6d6070739522dd236cba7055b8736bfe92b4fac0ea18ad809829ca79667014
-SIZE (u-boot/u-boot-2019.10.tar.bz2) = 14214608
+TIMESTAMP = 1586872320
+SHA256 (u-boot/u-boot-2020.04.tar.bz2) = fe732aaf037d9cc3c0909bad8362af366ae964bbdac6913a34081ff4ad565372
+SIZE (u-boot/u-boot-2020.04.tar.bz2) = 15065656
 SHA256 (u-boot/939129/raw) = 2a4ebf283aec8e74ec77b3cb071c6883f73807454ca94fea78361c7391187b97
 SIZE (u-boot/939129/raw) = 310
 SHA256 (u-boot/1036621/raw) = 28dbd66d14fab9dc782ce091d3c132a226b8425f6503c329ee8a7031b79b52f7

Modified: head/sysutils/u-boot-pandaboard/Makefile
==============================================================================
--- head/sysutils/u-boot-pandaboard/Makefile	Thu Apr 23 18:42:44 2020	(r532702)
+++ head/sysutils/u-boot-pandaboard/Makefile	Thu Apr 23 18:46:43 2020	(r532703)
@@ -6,4 +6,6 @@ MODEL=		pandaboard
 BOARD_CONFIG=	omap4_panda_defconfig
 FAMILY=		omap
 
+BROKEN=		Does not build anymore
+
 .include "${MASTERDIR}/Makefile"

Modified: head/sysutils/u-boot-rock64/Makefile
==============================================================================
--- head/sysutils/u-boot-rock64/Makefile	Thu Apr 23 18:42:44 2020	(r532702)
+++ head/sysutils/u-boot-rock64/Makefile	Thu Apr 23 18:46:43 2020	(r532703)
@@ -2,12 +2,6 @@
 
 MASTERDIR=	${.CURDIR}/../u-boot-master
 
-U_BOOT_SLAVE_PORTREVISION_2019.10=	1
-
-PATCHFILES+=	1173473/raw \
-		1172554/raw \
-		1172555/raw
-
 MODEL=		rock64
 BOARD_CONFIG=	rock64-rk3328_defconfig
 FAMILY=		rk3328

Modified: head/sysutils/u-boot-rpi3/Makefile
==============================================================================
--- head/sysutils/u-boot-rpi3/Makefile	Thu Apr 23 18:42:44 2020	(r532702)
+++ head/sysutils/u-boot-rpi3/Makefile	Thu Apr 23 18:46:43 2020	(r532703)
@@ -2,8 +2,6 @@
 
 MASTERDIR=	${.CURDIR}/../u-boot-master
 
-U_BOOT_SLAVE_PORTREVISION_2019.10=	1
-
 EXTRA_PATCHES=	${.CURDIR}/files/
 PATCHFILES+=	939129/raw
 # Allow variable reservation of lowest pages for increased PSCI stub size.

Modified: head/sysutils/u-boot-rpi4/Makefile
==============================================================================
--- head/sysutils/u-boot-rpi4/Makefile	Thu Apr 23 18:42:44 2020	(r532702)
+++ head/sysutils/u-boot-rpi4/Makefile	Thu Apr 23 18:46:43 2020	(r532703)
@@ -2,8 +2,6 @@
 
 MASTERDIR=	${.CURDIR}/../u-boot-master
 
-U_BOOT_SLAVE_PORTREVISION_2019.10=	1
-
 EXTRA_PATCHES=	${.CURDIR}/files/
 PATCHFILES+=	939129/raw
 # Updated libfdt, pre-req to the next set



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