From owner-svn-ports-head@freebsd.org Sun Jun 25 20:02:58 2017 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 80F1FD990D1; Sun, 25 Jun 2017 20:02:58 +0000 (UTC) (envelope-from linimon@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 5D2BC7C2A2; Sun, 25 Jun 2017 20:02:58 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5PK2v6F088668; Sun, 25 Jun 2017 20:02:57 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5PK2vjV088663; Sun, 25 Jun 2017 20:02:57 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706252002.v5PK2vjV088663@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 25 Jun 2017 20:02:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444322 - in head/sysutils: . u-boot-imx-serial-loader 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.23 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: Sun, 25 Jun 2017 20:02:58 -0000 Author: linimon Date: Sun Jun 25 20:02:56 2017 New Revision: 444322 URL: https://svnweb.freebsd.org/changeset/ports/444322 Log: This program boots an i.MX or Vybrid system using a copy of U-Boot transferred to the system over an OTG or UART connection. It can be used to "unbrick" a system which has a corrupted or missing copy of U-Boot in nonvolatile media such as nand flash or eeprom. i.MX systems use the OTG port, Vybrid systems use the UART port. To use this, connect the OTG port of your i.MX board to a USB host port on your computer, power on the board, then run imx_usb where filename is the board-specific u-boot.imx file to boot with. WWW: https://github.com/boundarydevices/imx_usb_loader PR: 220260 Submitted by: ian Added: head/sysutils/u-boot-imx-serial-loader/ head/sysutils/u-boot-imx-serial-loader/Makefile (contents, props changed) head/sysutils/u-boot-imx-serial-loader/distinfo (contents, props changed) head/sysutils/u-boot-imx-serial-loader/pkg-descr (contents, props changed) head/sysutils/u-boot-imx-serial-loader/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Jun 25 19:48:35 2017 (r444321) +++ head/sysutils/Makefile Sun Jun 25 20:02:56 2017 (r444322) @@ -1173,6 +1173,7 @@ SUBDIR += u-boot-cubieboard2 SUBDIR += u-boot-cubox-hummingboard SUBDIR += u-boot-duovero + SUBDIR += u-boot-imx-serial-loader SUBDIR += u-boot-master SUBDIR += u-boot-olimex-a20-som-evb SUBDIR += u-boot-olinuxino-lime Added: head/sysutils/u-boot-imx-serial-loader/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-imx-serial-loader/Makefile Sun Jun 25 20:02:56 2017 (r444322) @@ -0,0 +1,22 @@ +# Created by: Ian Lepore +# $FreeBSD$ + +PORTNAME= u-boot-imx-serial-loader +PORTVERSION= 2017.01 +CATEGORIES= sysutils + +MAINTAINER= ian@FreeBSD.org +COMMENT= Load u-boot via USB or UART on i.MX5, i.MX6, i.MX7, and Vybrid + +LICENSE= LGPL21 + +USE_GITHUB= yes +GH_ACCOUNT= boundarydevices +GH_PROJECT= imx_usb_loader +GH_TAGNAME= ba6b31c + +USES= gmake pkgconfig + +MAKE_ARGS+= prefix=${PREFIX} + +.include Added: head/sysutils/u-boot-imx-serial-loader/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-imx-serial-loader/distinfo Sun Jun 25 20:02:56 2017 (r444322) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498334706 +SHA256 (boundarydevices-imx_usb_loader-2017.01-ba6b31c_GH0.tar.gz) = a4bc518e4ddcb6e63ec6267d7e936d4099ded0af911c96f249060d208b14fa11 +SIZE (boundarydevices-imx_usb_loader-2017.01-ba6b31c_GH0.tar.gz) = 37621 Added: head/sysutils/u-boot-imx-serial-loader/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-imx-serial-loader/pkg-descr Sun Jun 25 20:02:56 2017 (r444322) @@ -0,0 +1,11 @@ +This program boots an i.MX or Vybrid system using a copy of U-Boot +transferred to the system over an OTG or UART connection. It can be +used to "unbrick" a system which has a corrupted or missing copy of +U-Boot in nonvolatile media such as nand flash or eeprom. i.MX systems +use the OTG port, Vybrid systems use the UART port. + +To use this, connect the OTG port of your i.MX board to a USB host +port on your computer, power on the board, then run imx_usb +where filename is the board-specific u-boot.imx file to boot with. + +WWW: https://github.com/boundarydevices/imx_usb_loader Added: head/sysutils/u-boot-imx-serial-loader/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-imx-serial-loader/pkg-plist Sun Jun 25 20:02:56 2017 (r444322) @@ -0,0 +1,9 @@ +bin/imx_uart +bin/imx_usb +etc/imx-loader.d/imx_usb.conf +etc/imx-loader.d/mx50_usb_work.conf +etc/imx-loader.d/mx51_usb_work.conf +etc/imx-loader.d/mx53_usb_work.conf +etc/imx-loader.d/mx6_usb_work.conf +etc/imx-loader.d/mx7_usb_work.conf +etc/imx-loader.d/vybrid_usb_work.conf