From owner-freebsd-arm@FreeBSD.ORG Fri Jun 5 08:40:03 2009 Return-Path: Delivered-To: freebsd-arm@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E65221065670 for ; Fri, 5 Jun 2009 08:40:03 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id A41E08FC08 for ; Fri, 5 Jun 2009 08:40:03 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id n558bTIk069763; Fri, 5 Jun 2009 02:37:29 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 05 Jun 2009 02:37:44 -0600 (MDT) Message-Id: <20090605.023744.1137954643.imp@bsdimp.com> To: beattie@beattie-home.net From: "M. Warner Losh" In-Reply-To: <1244167838.9543.116.camel@kokopelli> References: <2624C7F8-3639-405F-8E8C-A784FA4C1E0C@valka.is> <20090603.195059.1239873755.imp@bsdimp.com> <1244167838.9543.116.camel@kokopelli> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-arm@FreeBSD.org Subject: Re: KB9202B X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jun 2009 08:40:04 -0000 In message: <1244167838.9543.116.camel@kokopelli> Brian Beattie writes: : On Wed, 2009-06-03 at 19:50 -0600, M. Warner Losh wrote: : > In message: <2624C7F8-3639-405F-8E8C-A784FA4C1E0C@valka.is> : > Arnar Mar Sig writes: : > : On Jun 3, 2009, at 11:25 PM, Brian Beattie wrote: : > : > I'm trying to figure out FreeBSD on arm and I'm trying to get it : > : > running : > : > on a KwikByte 9202. : : ... : : > : > Console log below the sig. : > : > : > : : > : > ate0: mem 0xdffbc000-0xdffbffff irq 24 on atmelarm0 : > : > ate0: No MAC address set : > : > device_attach: ate0 attach returned 6 : > : looks like you have no working network device. : > : > Looks like no MAC address is programmed into the MAC by the : > boot loader... : > : > Warner : : Ok, I grabbed current sources via svn, and configured nanobsd to build : for the kb9202b. a console log for loading the kernel via tftp. as the : kernel boots up it run the DHCP protocol producing the following : message: : : Received DHCP Ack packet on ate0 from 0.0.0.0 (accepted) (no root path) : : I'm interpreting this as meaning that it's looking for some information : from the DHCP server. I can switch my DHCP server from my DD-WRT : firewall to a linux box if this is the case and I know what information : the freebsd kernel is looking for. : : Can somebody point me to a resource that defines this? I think that you need some special information in the DHCP server to get the root path. My isc dhcp server is configured for that like so: host avila.example.com { filename "kernel.avila"; hardware ethernet 00:d0:12:02:76:58; fixed-address 192.168.0.10 option root-path "192.168.0.2:/nfsroots/gateworks"; option root-opts "nolockd"; } Warner