Ready nas duo cannot stop boot timeout contdown June 08, 2024 09:16AM |
Registered: 2 years ago Posts: 20 |
Re: Ready nas duo cannot stop boot timeout contdown June 08, 2024 03:23PM |
Admin Registered: 13 years ago Posts: 18,898 |
Quote
Kirkwood plugs
Basic steps to install Debian and new u-boot on Kirkwood boxes
Boot Kirkwood rootfs with stock u-boot
Latest Linux Kirkwood kernel and rootfs
Latest Kirkwood u-boots
Re: Ready nas duo cannot stop boot timeout contdown June 08, 2024 04:43PM |
Registered: 2 years ago Posts: 20 |
Re: Ready nas duo cannot stop boot timeout contdown June 08, 2024 04:49PM |
Admin Registered: 13 years ago Posts: 18,898 |
Re: Ready nas duo cannot stop boot timeout contdown June 09, 2024 07:18AM |
Registered: 2 years ago Posts: 20 |
Re: Ready nas duo cannot stop boot timeout contdown June 09, 2024 02:21PM |
Admin Registered: 13 years ago Posts: 18,898 |
Re: Ready nas duo cannot stop boot timeout contdown June 09, 2024 02:54PM |
Registered: 2 years ago Posts: 20 |
Re: Ready nas duo cannot stop boot timeout contdown June 09, 2024 04:58PM |
Admin Registered: 13 years ago Posts: 18,898 |
Quote
3. Booting with stock u-boot that supports sata (ide command), ext2load, and run commands
Assuming you have created a HDD rootfs following the instruction in the release thread.
Power up, interrupt u-boot count down, and then.
setenv ide_set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 earlyprintk=serial'
setenv load_uimage 'ext2load ide 0:1 0x800000 /boot/uImage'
setenv load_uinitrd 'ext2load ide 0:1 0x2100000 /boot/uInitrd'
setenv ide_boot 'mw 0x800000 0 1; run load_uimage; run load_uinitrd; bootm 0x800000 0x2100000'
setenv ide_bootcmd 'run ide_set_bootargs; run ide_boot'
setenv bootcmd 'ide reset; run ide_bootcmd; reset'
And then,
printenv
boot
Since setenvs are transient, after test boot a few times with the above setenvs, you can proceed to make the envs permanent before boot
saveenv
boot