From owner-svn-src-projects@FreeBSD.ORG Wed May 13 04:33:21 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B5BF937C; Wed, 13 May 2015 04:33:21 +0000 (UTC) Received: from firebird.onthenet.com.au (firebird.onthenet.com.au [121.50.214.250]) by mx1.freebsd.org (Postfix) with ESMTP id 6719517A1; Wed, 13 May 2015 04:33:21 +0000 (UTC) Received: by firebird.onthenet.com.au (Postfix, from userid 0) id 72C56A461E; Wed, 13 May 2015 13:59:59 +1000 (AEST) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mx2.freebsd.org (mx2.freebsd.org [8.8.178.116]) by firebird.onthenet.com.au (Postfix) with ESMTP id CDA03A3B8D for ; Fri, 8 May 2015 09:49:52 +1000 (AEST) Received: from hub.freebsd.org (hub.freebsd.org [8.8.178.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.freebsd.org (Postfix) with ESMTPS id 3A0BA2899 for ; Thu, 7 May 2015 23:49:51 +0000 (UTC) Received: by hub.freebsd.org (Postfix) id 370E8C83; Thu, 7 May 2015 23:49:51 +0000 (UTC) Delivered-To: grehan@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id 1C2D2C38; Thu, 7 May 2015 23:49:51 +0000 (UTC) Delivered-To: src-committers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C6EB3C36; Thu, 7 May 2015 23:49:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 B620F1F27; Thu, 7 May 2015 23:49:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t47NnnL2056258; Thu, 7 May 2015 23:49:49 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t47NnnBu056257; Thu, 7 May 2015 23:49:49 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201505072349.t47NnnBu056257@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Thu, 7 May 2015 23:49:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r282616 - projects/release-arm-redux/release/arm X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk X-Loop: FreeBSD.org Sender: owner-src-committers@freebsd.org X-MailScanner-Information: Please contact the ISP for more information X-MailScanner: Not scanned: please contact your Internet E-Mail Service Provider for details X-Spam-Flag: not spam (whitelisted), SpamAssassin (not cached, score=-6.5, required 5, autolearn=not spam, BAYES_00 -1.90, KHOP_RCVD_UNTRUST 0.50, RCVD_IN_DNSWL_HI -5.00, RCVD_IN_HOSTKARMA_W -0.10) X-MailScanner-From: root@firebird.onthenet.com.au X-Spam-Status: No X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 May 2015 04:33:21 -0000 Author: gjb Date: Thu May 7 23:49:48 2015 New Revision: 282616 URL: https://svnweb.freebsd.org/changeset/base/282616 Log: Copy the rpi.dtb file to the FAT partition, preventing the 'Unrecognized partition table' error, causing boot failure. Sponsored by: The FreeBSD Foundation Modified: projects/release-arm-redux/release/arm/RPI-B.conf Modified: projects/release-arm-redux/release/arm/RPI-B.conf ============================================================================== --- projects/release-arm-redux/release/arm/RPI-B.conf Thu May 7 23:46:33 2015 (r282615) +++ projects/release-arm-redux/release/arm/RPI-B.conf Thu May 7 23:49:48 2015 (r282616) @@ -30,6 +30,8 @@ arm_install_uboot() { done cp -p ${CHROOTDIR}/${UFSMOUNT}/boot/ubldr \ ${CHROOTDIR}/${FATMOUNT}/ubldr + cp -p ${CHROOTDIR}/${UFSMOUNT}/boot/dtb/rpi.dtb \ + ${CHROOTDIR}/${FATMOUNT}/rpi.dtb echo 'loadbootscript=fatload mmc 0 0x2000000 ubldr' > \ ${CHROOTDIR}/${FATMOUNT}/uenv.txt echo 'bootscript=fdt addr 0x100;bootelf 0x2000000' >> \