|
VFS: Mounted root (cramfs filesystem) readonly on device 1:0
Freeing init memory: 120K
Kernel panic - not syncing: Attempted to kill init!
------------------------------------------------------------------------------------
我現在在移植Linux內核。
下面是我移植過程中的步驟
tftpboot 0x21000000 uImage;nand erase 0x80000 0x200000;nand write 0x21000000 0x80000 0x200000
tftpboot 0x21000000 rootfs.cramfs
setenv bootargs mem=64m console=ttyS0,115200 initrd=0x21000000,0x00800000 root=/dev/ram rw
setenv bootcmd nand read 22000000 80000 180000\; bootm 22000000
setenv bootdelay 1
boot
如果我用一個移植好的Linux2.6.30進行上面的過程,則可以正常啟動
但是我用我自己的做的linux2.6.38.7,則就出現 最上面的打印信息 |
|