From owner-svn-ports-all@freebsd.org Mon Feb 18 15:01:52 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98D9E14DE475; Mon, 18 Feb 2019 15:01:52 +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 3CEFC6B6AF; Mon, 18 Feb 2019 15:01:52 +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 2D52276EC; Mon, 18 Feb 2019 15:01:52 +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 x1IF1pT4046114; Mon, 18 Feb 2019 15:01:51 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1IF1pbH046110; Mon, 18 Feb 2019 15:01:51 GMT (envelope-from manu@FreeBSD.org) Message-Id: <201902181501.x1IF1pbH046110@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Mon, 18 Feb 2019 15:01:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493265 - in head/sysutils: . u-boot-clearfog u-boot-master X-SVN-Group: ports-head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: in head/sysutils: . u-boot-clearfog u-boot-master X-SVN-Commit-Revision: 493265 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3CEFC6B6AF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] 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: Mon, 18 Feb 2019 15:01:52 -0000 Author: manu Date: Mon Feb 18 15:01:50 2019 New Revision: 493265 URL: https://svnweb.freebsd.org/changeset/ports/493265 Log: New port: sysutils/u-boot-clearfog This is the U-Boot bootloader for the SolidRun ClearFog Pro. Submitted by: ml@vishwin.info Differential Revision: https://reviews.freebsd.org/D19230 Added: head/sysutils/u-boot-clearfog/ head/sysutils/u-boot-clearfog/Makefile (contents, props changed) head/sysutils/u-boot-clearfog/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile head/sysutils/u-boot-master/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Feb 18 14:58:12 2019 (r493264) +++ head/sysutils/Makefile Mon Feb 18 15:01:50 2019 (r493265) @@ -1371,6 +1371,7 @@ SUBDIR += u-boot-bananapim2 SUBDIR += u-boot-beaglebone SUBDIR += u-boot-chip + SUBDIR += u-boot-clearfog SUBDIR += u-boot-cubieboard SUBDIR += u-boot-cubieboard2 SUBDIR += u-boot-cubox-hummingboard Added: head/sysutils/u-boot-clearfog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-clearfog/Makefile Mon Feb 18 15:01:50 2019 (r493265) @@ -0,0 +1,9 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= clearfog +BOARD_CONFIG= clearfog_defconfig +FAMILY= armada38x + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/u-boot-clearfog/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-clearfog/pkg-descr Mon Feb 18 15:01:50 2019 (r493265) @@ -0,0 +1,9 @@ +U-Boot loader for the SolidRun ClearFog Pro. + +Install the u-boot-spl.kwb file onto the boot disk using: + + dd if=u-boot-spl.kwb of=/dev/whatever bs=512 seek=1 + +The BootROM searches for U-Boot after the first 512 bytes. + +WWW: https://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-master/Makefile ============================================================================== --- head/sysutils/u-boot-master/Makefile Mon Feb 18 14:58:12 2019 (r493264) +++ head/sysutils/u-boot-master/Makefile Mon Feb 18 15:01:50 2019 (r493265) @@ -93,6 +93,13 @@ UBOOT_METADATA_IMX6_RAW_BS= 512 UBOOT_PLIST_RK3399= idbspl.img u-boot.itb UBOOT_ARCH_RK3399= aarch64 +# Override for ARMADA38X family +UBOOT_PLIST_ARMADA38X= u-boot-spl.kwb +UBOOT_METADATA_ARMADA38X_FILES= ${UBOOT_PLIST_ARMADA38X} +UBOOT_METADATA_ARMADA38X_METHOD= raw +UBOOT_METADATA_ARMADA38X_RAW_OFFSET= 1 +UBOOT_METADATA_ARMADA38X_RAW_BS= 512 + # Uboot variables .if !defined(UBOOT_VERSION) && defined(UBOOT_VERSION_${FAMILY:tu}) UBOOT_VERSION=${UBOOT_VERSION_${FAMILY:tu}}