EVM6446
My boot options are:
bootcmd=bootm 0x2050000
bootdelay=3
baudrate=115200
bootfile="uImage"
nfshost=192.168.11.100
rootpath=/home/Lorry/workdir/filesys
bootargs=console=ttyS0,115200n8 noinitrd rw ip=dhcp root=/dev/nfs nfsroot=192.168.11.100:/home/Lorry/workdir/filesys,nolock mem=120M
stdin=serial
stdout=serial
stderr=serial
videostd=pal
The error message is:
Sending DHCP requests ., OK
IP-Config: Got DHCP answer from 0.0.0.0, my address is 192.168.11.102
IP-Config: Complete:
device=eth0, addr=192.168.11.102, mask=255.255.255.0, gw=192.168.11.26,
host=192.168.11.102, domain=, nis-domain=(none),
bootserver=0.0.0.0, rootserver=192.168.11.100, rootpath=
Looking up port of RPC 100003/2 on 192.168.11.100
Looking up port of RPC 100005/1 on 192.168.11.100
RPC: garbage, exit EIO
Root-NFS: Server returned error -5 while mounting /home/Lorry/workdir/filesys
VFS: Unable to mount root fs via NFS, trying floppy.
VFS: Cannot open root device "nfs" or unknown-block(2,0)
Please append a correct "root=" boot option
Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(2,0)
I think that the device of '/dev/nfs' can not be connected, but it is not related with access permission ( if it is a permission error, the error number should be 13, but now it is -5).
what does "-5" represents in NFS? How to resolve it?
Thanks.