Custom kernel with NFS client support
- by Vaibhav
I'm trying to build a custom Linux kernel using this link
I have successfully built the kernel and booted into it. Now I want to mount NFS share on it.
I have enabled NFS client support from menuconfig .
Update :
I'm trying to mount a NFS share from newly built kernel. I have tried adding a NFS client support to the kernel.
Following command shows (From newly built kernel)
#cat /proc/filesystems
nodev nfs
nodev usbfs
ext3
vfat
....
Which shows that kernel support NFS filesystem but, mount command fails to mount NFS share, which is working fine on other machines.
Help will be appreciated.