From owner-svn-ports-all@freebsd.org Fri Apr 10 14:41:13 2020 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 4D99A2BF9F9; Fri, 10 Apr 2020 14:41:13 +0000 (UTC) (envelope-from trasz@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 48zLL11RSTz47ln; Fri, 10 Apr 2020 14:41:13 +0000 (UTC) (envelope-from trasz@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 2CD6027AB3; Fri, 10 Apr 2020 14:41:13 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03AEfDxf040586; Fri, 10 Apr 2020 14:41:13 GMT (envelope-from trasz@FreeBSD.org) Received: (from trasz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03AEfCAo040582; Fri, 10 Apr 2020 14:41:12 GMT (envelope-from trasz@FreeBSD.org) Message-Id: <202004101441.03AEfCAo040582@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trasz set sender to trasz@FreeBSD.org using -f From: Edward Tomasz Napierala Date: Fri, 10 Apr 2020 14:41:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531322 - in head/sysutils: . u-boot-qemu-arm X-SVN-Group: ports-head X-SVN-Commit-Author: trasz X-SVN-Commit-Paths: in head/sysutils: . u-boot-qemu-arm X-SVN-Commit-Revision: 531322 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Fri, 10 Apr 2020 14:41:13 -0000 Author: trasz Date: Fri Apr 10 14:41:12 2020 New Revision: 531322 URL: https://svnweb.freebsd.org/changeset/ports/531322 Log: Add sysutils/u-boot-qemu-arm: U-Boot build for QEMU Reviewed by: manu Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D24365 Added: head/sysutils/u-boot-qemu-arm/ head/sysutils/u-boot-qemu-arm/Makefile (contents, props changed) head/sysutils/u-boot-qemu-arm/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Apr 10 14:19:52 2020 (r531321) +++ head/sysutils/Makefile Fri Apr 10 14:41:12 2020 (r531322) @@ -1360,6 +1360,7 @@ SUBDIR += u-boot-pine64 SUBDIR += u-boot-pine64-lts SUBDIR += u-boot-pinebook + SUBDIR += u-boot-qemu-arm SUBDIR += u-boot-riotboard SUBDIR += u-boot-rock64 SUBDIR += u-boot-rockpro64 Added: head/sysutils/u-boot-qemu-arm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-qemu-arm/Makefile Fri Apr 10 14:41:12 2020 (r531322) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= qemu-arm +BOARD_CONFIG= qemu_arm_defconfig +FAMILY= qemu + +UBOOT_PLIST= u-boot.bin + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/u-boot-qemu-arm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-qemu-arm/pkg-descr Fri Apr 10 14:41:12 2020 (r531322) @@ -0,0 +1,8 @@ +U-Boot loader for QEMU + +To use this bootloader to boot a FreeBSD armv7 image, install emulators/qemu +and execute it as eg: + +qemu-system-arm -M virt -m 512m -nographic -bios /usr/local/share/u-boot/u-boot-qemu-arm/u-boot.bin -hda FreeBSD-13.0-CURRENT-arm-armv7-GENERICSD-20200409-r359731.img + +For general information about U-Boot see WWW: https://www.denx.de/wiki/U-Boot