Mount VFAT USB stick

Hi,

I have a very minimalistic QNX system on my target environment that bases on QNX 6.3.2.

There I want to mount a VFAT partition of a USB stick (what works well on a full system).

What I have at the moment is the following in my .ifs / .boot file:

devb-umass cam pnp disk name=umass translation 16:63 &
waitfor /dev/umass0t77 15
waitfor /dev/umass0t11 15
...
mount /dev/umass0t11 /fat0

The /fat0 directory is mounted but when I try to access it, it tells me the file system is corrupt (which isn’t).

fs-dos.so exists on that system …

So what could be missing here?

mount -tdos ?

Yeah, this is it :slight_smile:

Thanks!