对于Kernel panic - not syncing: No init found出错的解决办法

最近,在移植linux操作系统和使用NFS文件系统启动linux操作系统时,提示

tmmac_timer: TMU2 Timer ON (freq 256Hz)
IP-Config: Complete:
      device=eth0, addr=172.16.131.47, mask=255.255.255.0, gw=172.16.131.3,
     host=172.16.131.47, domain=, nis-domain=(none),
     bootserver=172.16.131.4, rootserver=172.16.131.4, rootpath=
Looking up port of RPC 100003/2 on 172.16.131.4
PHY: 0:02 - Link is Up - 100/Full
Looking up port of RPC 100005/1 on 172.16.131.4
VFS: Mounted root (nfs filesystem).
Freeing unused kernel memory: 140k freed
Kernel panic - not syncing: No init found.  Try passing init= option to kernel.
只是知道init进程失败,为什么失败?

在网上找了下,发现没有很好的解决办法,但是,想起自己以前移植的时候,好像没出现这个问题,于是将自己这次移植和以前移植做了个比较,发现这次在编译busybox时,使用的是动态链接,而以前使用的是静态链接,于是怀疑少了动态库文件,于是将gcc编译器目录下arm-linux/lib/目录下的所有库拷到文件系统lib目录下,启动成功,但是这些文件全部拷贝过来有点大,需要删除部分。需删除的后续。。。。

你可能感兴趣的:(对于Kernel panic - not syncing: No init found出错的解决办法)