From owner-freebsd-arm@FreeBSD.ORG Sun Apr 20 17:54:57 2014 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 15780501; Sun, 20 Apr 2014 17:54:57 +0000 (UTC) Received: from mail-wi0-x236.google.com (mail-wi0-x236.google.com [IPv6:2a00:1450:400c:c05::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 79BF914E2; Sun, 20 Apr 2014 17:54:56 +0000 (UTC) Received: by mail-wi0-f182.google.com with SMTP id d1so1139624wiv.3 for ; Sun, 20 Apr 2014 10:54:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=dwu+XFl/fKsPffg4+g67ENAgqY2mfxBH9WCawxTKR2Q=; b=RvkC4ROmrdPInmbVsQpjRHDFzC6dFfIbZ13n7U9ptv974AjTQFMagdy/wN5uYCrIP9 g6Yz2fg+YKU9U+xl1xDPTvUUhrLngZ2Bk3CRDqCW8QhB3G1CVelNVl8McduKs8CTJRyU i5sdp/2vv2a8YAhS3sRZSXnojNzsR+thw++23GtkLpm8sre/ieFNWW8D/Zc4NhFAVg12 fSM+UvQ3TZdpzkEKRwHhdotToyxpgda27CuNJNsqJA5nb7OXdhgNT/ggaVI9u+mvuvcG gRTyyk+HrRi1iM1UDTUqJVFHhPd/WGCOTks+teuEkf/UaZk+CQ26U5wwKuSFXhbctjGI sK0g== X-Received: by 10.180.81.40 with SMTP id w8mr10656486wix.45.1398016494594; Sun, 20 Apr 2014 10:54:54 -0700 (PDT) Received: from [192.168.113.40] (142.Red-83-56-26.staticIP.rima-tde.net. [83.56.26.142]) by mx.google.com with ESMTPSA id ll1sm53494586wjc.6.2014.04.20.10.54.53 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 20 Apr 2014 10:54:54 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.6 \(1510\)) Subject: Re: Today's Crochet fixes From: fabiodive In-Reply-To: <24AD766C-FA11-45AD-94B3-7C99EBF53FD0@freebsd.org> Date: Sun, 20 Apr 2014 18:54:52 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <0FD02F98-DA8E-48E7-9C23-1F02BDFD5811@gmail.com> References: <24AD766C-FA11-45AD-94B3-7C99EBF53FD0@freebsd.org> To: Tim Kientzle X-Mailer: Apple Mail (2.1510) Cc: FreeBSD ARM 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: Sun, 20 Apr 2014 17:54:57 -0000 Hello Tim, today I am building an image with crochet from FreeBSD 11 source, previously I was working successfully with FreeBSD 10 source set, I would like to explore the work of Xuebing Wang trying to include his patches to increase the CPU frequency. I will try to patch u-boot 2014.01. I had some trouble before trying to = use sysutils/u-boot-beaglebone-eabi.=20 Thank you for valuable work, until now. cheers, Fabio On Apr 20, 2014, at 18:27 , Tim Kientzle wrote: > I just pushed a couple of changes to Crochet that I thought folks = would be especially interested in: >=20 > * All boards: Corrected instructions for building xdev tools. >=20 > The instructions printed out by Crochet now include the right > flags for building a correct GCC cross-compiler. With this, I've > been able to build a working BeagleBone image on a fresh stock install = of > FreeBSD/amd64 11-CURRENT r260789. >=20 > * BeagleBone: Added a "copy-to-emmc.sh" script to root's home = directory >=20 > After logging in as root, try: /bin/sh copy-to-emmc.sh >=20 > It will print scary warnings about erasing things. If you go ahead, > it will reformat the eMMC and copy the system from SD to eMMC. > Suggestions for improvements appreciated. >=20 >=20 > Things I'm interested in help with: >=20 > * Updating U-Boot for BeagleBone to a newer snapshot > (Including migrating Patrick Kelsey's patches to support eMMC = booting) >=20 > * Building U-Boot with clang (Winston Smith claims it "just works" > if you have new enough U-Boot sources; I've not yet tried to = reproduce this. > If it works as well as I hope, it will take a while to update = U-Boot sources > for each Crochet-supported board.) >=20 > * We're using geom_label for BeagleBone fstab now; would appreciate > if someone could add this to the stock kernel configs. >=20 > * Diane Bruce fixed the sysutils/u-boot-beaglebone-eabi port so it > builds again. I've not yet tested to see if Crochet can generate a > bootable image using it. It definitely lacks the newer patches that > are in the Crochet-built version of U-Boot for BeagleBone. If this > can be cleaned up, it should provide a template for migrating > U-Boot for other boards into ports. >=20 > * Testing other boards: RPi, PandaBoard, WandBoard, etc. >=20 > If you play with any of the above, please let me know what you find. > As always, patches are very welcome, pull requests even more so. >=20 > Cheers, >=20 > Tim >=20 >=20 > _______________________________________________ > freebsd-arm@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-arm > To unsubscribe, send any mail to "freebsd-arm-unsubscribe@freebsd.org"