From owner-freebsd-arm@FreeBSD.ORG Sun Sep 1 11:07:26 2013 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CDAC3446 for ; Sun, 1 Sep 2013 11:07:26 +0000 (UTC) (envelope-from taguchi949@gmail.com) Received: from mail-pb0-x22a.google.com (mail-pb0-x22a.google.com [IPv6:2607:f8b0:400e:c01::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A80402610 for ; Sun, 1 Sep 2013 11:07:26 +0000 (UTC) Received: by mail-pb0-f42.google.com with SMTP id un15so3651916pbc.15 for ; Sun, 01 Sep 2013 04:07:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; bh=oZwT4JFJCnPnmurUB1RtY4ufBZnAf4GJ7T8jXclw/Ik=; b=NhtDj/1VARmMRsC9cxVuPSVlcZ9tSRzH+WxcYc8a6RN29xcQhpTOO4K/aWY8vN+qV5 cRI548yP7+7fbIT/htorEne5wz9DkI0j6WqES8pgtJrwoeZDHSfWacrcyOpoSi7y3ki+ 8ZGid79Oylcq00dA2i1v5zQMONHp/hPKdYN4uyJfJXNL1F+ZGIMMNT9vn84TJZkzz0I6 QqAqIMx/2vqz5VL9ZFND4em+l7zTwCg2g7FJyNOUlNTvVsL5j/zC7jgOqOYLOi3m4suB TQah/dBGiflhuOnoCmxsE/JOxnuu2Zyag23zg/EJsspHgEg8Sa46ZIzoSU8poLoqzOc0 AC1g== X-Received: by 10.68.238.196 with SMTP id vm4mr19892980pbc.11.1378033646188; Sun, 01 Sep 2013 04:07:26 -0700 (PDT) Received: from BL-212 (48.178.30.125.dy.iij4u.or.jp. [125.30.178.48]) by mx.google.com with ESMTPSA id in2sm9209937pbc.37.1969.12.31.16.00.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sun, 01 Sep 2013 04:07:25 -0700 (PDT) Date: Sun, 1 Sep 2013 20:07:26 +0900 From: Takeshi Taguchi To: freebsd-arm@freebsd.org Subject: Re: What's the recipe? Message-Id: <20130901200726.ac7317a5f0ddfddcbed34484@gmail.com> In-Reply-To: <522229C0.5030504@m5p.com> References: <522229C0.5030504@m5p.com> X-Mailer: Sylpheed 3.3.0 (GTK+ 2.10.14; i686-pc-mingw32) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Sep 2013 11:07:26 -0000 On Sat, 31 Aug 2013 13:37:04 -0400 George Mitchell wrote: > Have you built a working Raspberry Pi image recently? If so, for the > benefit of the rest of us, could you share a few secrets? there are no secrets ;-) > 1. What system did you do the build on? If it was an i386 or amd64, > what svn version was it built with? amd64 on virtualbox. # uname -a FreeBSD amd64-01 10.0-CURRENT FreeBSD 10.0-CURRENT #10 r255093M: Sat Aug 31 21:41:10 JST 2013 root@amd64-01:/usr/obj/usr/src/sys/VIRTUALBOX amd64 > > 2. What did you have in /etc/src.conf and /etc/make.conf, both for > building the build system itself and for building the RPi? i use same make|src.conf for pi and amd64. % egrep -v ^# /etc/make.conf COPTFLAGS= -O -pipe TOP_TABLE_SIZE= 101 WITH_PKGNG=YES NO_WERROR= WERROR= PERL_VERSION=5.14.4 WITH_NEW_XORG=yes % egrep -v ^# /etc/src.conf MALLOC_PRODUCTION=YES i think we stil need MALLOC_PRODUCTION. because jemalloc issue does not fixed yet. > > 3. What svn version of /usr/src did you use in building the RPi image? % uname -a FreeBSD raspberry-pi 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r255093M: Sun Sep 1 02:25:56 JST 2013 root@amd64-01:/usr/home/armdevel/crochet-freebsd/work/obj /arm.armv6/usr/src/sys/RPI-B arm i applied 2 patch: a. 'working console on manut prompt' patch. i found it this ml. b. enabling mount_smbfs on arm patch. kern/180438. and i disabled any debugging options on my KERNCONF. > 4. Did you use crochet? If so, what was the last commit in your git > log? Yes. % git log commit b154a2f1252eaa5f4d821439d0d9005cea94e580 Merge: a6f4cc5 8d03c23 Author: Tim Kientzle Date: Sat Aug 17 12:00:52 2013 -0700 ... Merge branch 'skibo-master' Thanks. -- Takeshi Taguchi