Mount network share (nfs/cifs)
So this finally is my very first noob-post... I'm quite afraid of what's gonna happen with me after that even though I really tried my best to find a solution myself and to post to the right thread

I'm quite familiar with Linux, but not (yet?) android.
Flashed official CM 10.1.2 to my Nexus 7 (it's grouper, but didn't find a 10.1 official thread over there and can't imagine it matters). I'm unable to mount a network share (either nfs or cifs) while the config looks promising to me:
In /proc/config.gz I see this:
Code:
# CONFIG_USB_FUNCTIONFS is not set
CONFIG_NFS_FS=y
# CONFIG_NFS_V3 is not set
# CONFIG_NFS_V4 is not set
CONFIG_ROOT_NFS=y
# CONFIG_NFSD is not set
CONFIG_NFS_COMMON=y
and this:
Code:
CONFIG_CIFS=m
CONFIG_CIFS_STATS=y
# CONFIG_CIFS_STATS2 is not set
# CONFIG_CIFS_WEAK_PW_HASH is not set
CONFIG_CIFS_XATTR=y
CONFIG_CIFS_POSIX=y
# CONFIG_CIFS_DEBUG2 is not set
/proc/filesystems is this (amongst others of course):
After modprobe cifs I get this from lsmod:
Code:
cifs 235109 0 - Live 0x00000000
For NFS the best I can get is this:
Code:
# busybox mount -o nolock -t nfs 192.168.2.25:/path/to/share /mnt/cifs
mount: mounting ... on ... failed: Protocol not supported
For CIFS it's this:
Code:
# busybox mount -o user=foo,password=bar -t cifs //192.168.2.25 /mnt/cifs
mount: mounting ... on ... failed
/mnt/cifs is root:root 777.
CIFSmanager seems to use a different mount command and yields "mount: invalid argument" (I also get this if omitting busybox on the above commands)
I'd really appreciate if anybody was able to help me on this issue or direct me somwhere else.
Thank you!