From owner-freebsd-arm@FreeBSD.ORG Sun Feb 3 17:20:42 2013 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7A525BAB for ; Sun, 3 Feb 2013 17:20:42 +0000 (UTC) (envelope-from george@ceetonetechnology.com) Received: from feynman.konjz.org (feynman.konjz.org [64.147.119.39]) by mx1.freebsd.org (Postfix) with ESMTP id 39D811C5 for ; Sun, 3 Feb 2013 17:20:41 +0000 (UTC) Received: from [192.168.1.103] (ool-4354ba6f.dyn.optonline.net [67.84.186.111]) (authenticated bits=0) by feynman.konjz.org (8.14.6/8.14.4) with ESMTP id r13HKNmn030898 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sun, 3 Feb 2013 12:20:29 -0500 (EST) (envelope-from george@ceetonetechnology.com) Message-ID: <510E9C5A.2080003@ceetonetechnology.com> Date: Sun, 03 Feb 2013 12:20:26 -0500 From: George Rosamond User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130117 Thunderbird/17.0.2 MIME-Version: 1.0 To: Tim Kientzle Subject: Re: Some ideas on Tim's script References: <51092D3A.4060608@ceetonetechnology.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Names: RDNS_DYNAMIC X-Mail-Provider: KonjZ X-Scanned-By: MIMEDefang 2.73 on 64.147.119.39 Cc: freebsd-arm@freebsd.org X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: george@ceetonetechnology.com List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Feb 2013 17:20:42 -0000 On 02/02/13 00:54, Tim Kientzle wrote: > > On Jan 30, 2013, at 6:24 AM, George Rosamond wrote: > >> I mentioned this to Tim offline a while back, but I have some quick thoughts on options for the scripts. > > Here's the change I just made to the /etc/rc.conf used > by my scripts for BeagleBone builds. If you have further > suggestions, I'm happy to include them. > > --- a/board/BeagleBone/overlay/etc/rc.conf > +++ b/board/BeagleBone/overlay/etc/rc.conf > @@ -1,6 +1,14 @@ > hostname="beaglebone" > ifconfig_cpsw0="DHCP" > sshd_enable="YES" > +rc_debug="YES" > +rc_info="YES" > + > +tmpmfs="YES" > +tmpsize="13m" I've been using /etc/fstab in overlay for setting these, and it looks like this: /dev/mmcsd0s2a / ufs rw,noatime 1 1 md /tmp mfs rw,noatime,-s30m 0 0 md /var/log mfs rw,noatime,-s15m 0 0 md /var/tmp mfs rw,noatime,-s5m 0 0 Never used the tmpmfs option in rc.conf, but will try it out. > + > +ntpd_enable="YES" > +ntpd_sync_on_start="YES" > > # Turn off a lot of standard stuff > # for more free memory. > > g