From owner-freebsd-arm@FreeBSD.ORG Sun Dec 30 22:00:29 2012 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF39CA91 for ; Sun, 30 Dec 2012 22:00:29 +0000 (UTC) (envelope-from ronald@klop.ws) Received: from smarthost1.greenhost.nl (smarthost1.greenhost.nl [195.190.28.78]) by mx1.freebsd.org (Postfix) with ESMTP id 907408FC16 for ; Sun, 30 Dec 2012 22:00:29 +0000 (UTC) Received: from smtp.greenhost.nl ([213.108.104.138]) by smarthost1.greenhost.nl with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1TpQvi-0001Yo-G9 for freebsd-arm@freebsd.org; Sun, 30 Dec 2012 23:00:27 +0100 Received: from h253044.upc-h.chello.nl ([62.194.253.44] helo=pinky) by smtp.greenhost.nl with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from ) id 1TpQvi-0003L0-GW for freebsd-arm@freebsd.org; Sun, 30 Dec 2012 23:00:26 +0100 Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes To: freebsd-arm@freebsd.org Date: Sun, 30 Dec 2012 23:00:25 +0100 Subject: nand partitioning and fdt/dts? MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: "Ronald Klop" Message-ID: User-Agent: Opera Mail/12.12 (Win32) X-Virus-Scanned: by clamav at smarthost1.samage.net X-Spam-Level: / X-Spam-Score: -0.0 X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_40 autolearn=disabled version=3.3.1 X-Scan-Signature: 258bd43c1b7c380ff6f1b27dffaa1ebc 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, 30 Dec 2012 22:00:29 -0000 Hi, I configured my SheevaPlug like this: http://wiki.freebsd.org/NAND#Static_NAND_partitioning Now I'm running with this little local patch. Index: sys/boot/fdt/dts/sheevaplug.dts =================================================================== --- sys/boot/fdt/dts/sheevaplug.dts (revision 244271) +++ sys/boot/fdt/dts/sheevaplug.dts (working copy) @@ -95,7 +95,12 @@ }; slice@200000 { - reg = <0x200000 0x1fe00000>; + reg = <0x200000 0x600000>; + label = "fbsd-boot"; + }; + + slice@800000 { + reg = <0x800000 0x1f800000>; label = "root"; }; }; Not a problem, but I wonder why the config in wiki is different to the config in svn. Can somebody explain this? Is there a better way to load the kernel than the fbsd-boot slice in nand? I could imagine a bootloader loading the kernel from the 'root' slice, but can't find any information how to configure that (if it already exists). Regards, Ronald.