1
I am trying to load Debian Linux on my Lacie ss4000e I have been trying to follow this tutorial http://d-i.alioth.debian.org/manual/en.armel/ch05s01.html#boot-firmware-ss4000e
I have tried to load it using both the ymodem method and the network method both end with a kernel panic.
[ 2.412165] No filesystem could mount root, tried:
[ 2.417094] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(1,0)
[ 2.425495] [<c001378c>] (unwind_backtrace+0x0/0xe0) from [<c0278254>] (panic+0x50/0x194)
[ 2.433784] [<c0278254>] (panic+0x50/0x194) from [<c037cc08>] (mount_block_root+0x234/0x284)
[ 2.442294] [<c037cc08>] (mount_block_root+0x234/0x284) from [<c037cde0>] (prepare_namespace+0x124/0x184)
[ 2.451935] [<c037cde0>] (prepare_namespace+0x124/0x184) from [<c037c89c>] (kernel_init+0x12c/0x160)
[ 2.461149] [<c037c89c>] (kernel_init+0x12c/0x160) from [<c000edf8>] (kernel_thread_exit+0x0/0x8)
The exact command of my last try is as follows
fis load rammode
g
Then I wait for it to reboot and hit ctrl+c
ip_address -l 192.168.1.3 -h 192.168.1.100
load -v -r -b 0x01800000 -m http /initrd.gz
load -v -r -b 0x01008000 -m http /zImage
exec -c "console=ttyS0,115200 rw root=/dev/ram mem=256M@0xa0000000" -r 0x01800000
After more debuging and testing it looks like the initrd.gz format is a cpio archive, where as I think it should be a ext2, ( I tryed the same steps using the ramdisk.gz file system which is an ext2 and it at least boots, – Tim Holum – 2013-08-19T21:22:17.493