by BuffaloM » Tue Oct 09, 2012 3:00 am
$this->bbcode_second_pass_quote('BuffaloM', '
')There were also some additional options needed in the uBoot
This was missing the ip argumet in the bootargs. It should be:
$this->bbcode_second_pass_code('', '
setenv ipaddr 192.168.0.3
setenv serverip 192.168.0.2
setenv gatewayip 192.168.0.1
setenv netmask 255.255.255.0
setenv hostname pogoplug
setenv ip ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}:eth0:off
setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:/var/exports/pogoplug-root ${ip} console=ttyS0,115200 mem=128M
')
or to speed up the pasting, which seems to only like one line at a time (but can take some length):
$this->bbcode_second_pass_code('', '
setenv ipaddr 192.168.0.3; setenv serverip 192.168.0.2; setenv gatewayip 192.168.0.1; setenv netmask 255.255.255.0; setenv hostname pogoplug
setenv ip ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}:eth0:off; setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:/var/exports/pogoplug-root ${ip} console=ttyS0,115200 mem=128M
tftp 61000000 uImage; bootm 61000000
')