From owner-freebsd-arm@FreeBSD.ORG Fri Dec 27 02:51:16 2013 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 65F56AB7; Fri, 27 Dec 2013 02:51:16 +0000 (UTC) Received: from monday.kientzle.com (99-115-135-74.uvs.sntcca.sbcglobal.net [99.115.135.74]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3ED4016AD; Fri, 27 Dec 2013 02:51:15 +0000 (UTC) Received: (from root@localhost) by monday.kientzle.com (8.14.4/8.14.4) id rBR2pCX4008480; Fri, 27 Dec 2013 02:51:12 GMT (envelope-from kientzle@freebsd.org) Received: from [192.168.2.123] (gateway.kientzle.com [192.168.1.65]) by kientzle.com with SMTP id ij4mkixv7y83jcpia8dhhbk45w; Fri, 27 Dec 2013 02:51:12 +0000 (UTC) (envelope-from kientzle@freebsd.org) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: FreeBSD 10.0-RC3 Now Available From: Tim Kientzle In-Reply-To: Date: Thu, 26 Dec 2013 18:51:11 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: <7684A21C-4451-44ED-A11A-C03EF7850F01@freebsd.org> References: <20131226162521.GK2009@glenbarber.us> <2B79BF2A-1798-40F5-AD6E-D560E9C6C1E7@freebsd.org> <20131226194830.4f6e5b13@bender.Home> To: Warner Losh X-Mailer: Apple Mail (2.1827) Cc: freebsd-arm ml , FreeBSD Release Engineering Team X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Dec 2013 02:51:16 -0000 On Dec 26, 2013, at 11:59 AM, Warner Losh wrote: > Can crochet take this the userland tarball and make an image from it? Easy-peasy. There are hooks for this already in lib/board.sh that you can override in config.sh. Something like the following (untested) should do the trick: # (Optional) Don=92t build world. board_default_buildworld ( ) { } # Replace default installworld with untar board_default_installworld ( ) { cd ${BOARD_FREEBSD_MOUNTPOINT} tar xf ${WORLD_TARBALL} }