I am trying to mount a smb share on my embedded Linux running on ARM (3.6.9) with busybox 1.21
mount -t cifs //192.168.0.12/mydata /mnt/myData
results in an invalid argument error:
mount: mounting /192.168.0.12/mydata/ on /mnt/myData failed: Invalid argument
CIFS support is definetly installed and the directories exist. Is there any syntax difference in busybox's mount command? Thank in advance!