User Feedback :: bug with USB hub
FYI,
If the problem is only that the proper mountpoints are not automatically entered into /etc/fstab, assuming that the devices are present you can still manually mount them from within a script, IE:
Assuming that 1st cardread slot exists at /dev/sda and is mounted at /dev/sda1 and mountpoint /mnt/sda1 according to autodetection. The second slot is probably there at /dev/sdb and can be manually mounted at /dev/sdb1 and mountpoint /mnt/sdb1:
sudo su
mkdir /mnt/sdb1
mount -t vfat /dev/sdb1 /mnt/sdb1
You can then access the files if you are user 'root' on your 2nd cardreader slot.
Give it a try. It might work.
original here.