Hello,
Ive done:
Code: Select all
zcat Iomega-HMNHD-CE-1st-32M.img.gz | dd of=/dev/sdb bs=1M
0+1024 records in
0+1024 records out
33554432 bytes (34 MB) copied, 2.95846 s, 11.3 MB/s
dd if=uImage of=/dev/sdb bs=512 seek=1290
5989+1 records in
5989+1 records out
3066408 bytes (3.1 MB) copied, 0.54459 s, 5.6 MB/s
and then I followed these instructions
rdimg.gz is actually a gzipped ext2 filesystem, with an uImage header. You can extract the filesystem:
Code:
tail -c +65 rdimg.gz | gzip -d >initrd
and mount it
Code:
mkdir -p initrd.d
mount -o loop initrd initrd.d
Now you can edit the bootscript (/rclinux) to setup the network, and start a telnet daemon....
and edited /etc/rc (added telnet daemon)
but I'm stuck (as a newbie) on how to make proper rdimg.gz from the mounted initrd.d. Can you pls poin me (does regular gzip will suffice?)
After that I have a question - if I'll manage to login via telnet, how to invoke firmware flashing ?