Re: [U-Boot] Beginners Questions on modding a NAS

2013-03-08 Thread JPT
Hi Mike, Sorry, I am partly off-topic. but since cross compiling and uboot images are still close to uboot, i'll stay here. Am 05.03.2013 21:30, schrieb Michael Cashwell: On Mar 5, 2013, at 2:25 PM, JPT wrote: *** Next step, booting from disk ... this works, but the kernel doesn't know

Re: [U-Boot] Beginners Questions on modding a NAS

2013-03-05 Thread Michael Cashwell
On Mar 5, 2013, at 2:25 PM, JPT wrote: > Hi, > > wow, thanks. bootm worked fine. :) Spiffy. > *** Next step, booting from disk > I created a root fs on USB drive and tried to boot it. > > usb start > ext2load usb 0:1 0x0200 /boot/kernel-DUO-1.0.22 > bootm > > this works, but the kernel d

Re: [U-Boot] Beginners Questions on modding a NAS

2013-03-05 Thread JPT
Hi, wow, thanks. bootm worked fine. :) *** Next step, booting from disk I created a root fs on USB drive and tried to boot it. usb start ext2load usb 0:1 0x0200 /boot/kernel-DUO-1.0.22 bootm this works, but the kernel doesn't know where to find the root partition. how do I have to pass th

Re: [U-Boot] Beginners Questions on modding a NAS

2013-03-04 Thread Albert ARIBAUD
Hi Jagan, On Mon, 4 Mar 2013 23:02:58 +0530, Jagan Teki wrote: > Hi JPT, > > On Mon, Mar 4, 2013 at 9:10 PM, JPT wrote: > > Hi, > > > > I've got a NAS which uses uboot: > > U-Boot 1.1.4 (Feb 6 2012 - 14:40:46) Marvell version: 3.4.27 > > > > It's a Netgear ReadyNAS Duo V2, and the original so

Re: [U-Boot] Beginners Questions on modding a NAS

2013-03-04 Thread Jagan Teki
Hi JPT, On Mon, Mar 4, 2013 at 9:10 PM, JPT wrote: > Hi, > > I've got a NAS which uses uboot: > U-Boot 1.1.4 (Feb 6 2012 - 14:40:46) Marvell version: 3.4.27 > > It's a Netgear ReadyNAS Duo V2, and the original sofware sucks. ;) > > I would like to start with the original kernel (because it conta

Re: [U-Boot] Beginners Questions on modding a NAS

2013-03-04 Thread Michael Cashwell
On Mar 4, 2013, at 10:40 AM, JPT wrote: > It's a Netgear ReadyNAS Duo V2, and the original sofware sucks. ;) > standalone=fsload 0x200 $(image_name);setenv bootargs $(console) > root=/dev/mtdblock0 rw ip=$(ipaddr):$(serverip)$(bootargs_end) > $(mvPhoneConfig); bootm 0x200; > bootcmd=nan

[U-Boot] Beginners Questions on modding a NAS

2013-03-04 Thread JPT
Hi, I've got a NAS which uses uboot: U-Boot 1.1.4 (Feb 6 2012 - 14:40:46) Marvell version: 3.4.27 It's a Netgear ReadyNAS Duo V2, and the original sofware sucks. ;) I would like to start with the original kernel (because it contains some patches) and a custom debian made with multistrap. Wh