* Add noatime to speed up SD access a little and add umask=0 to udev instead of uid=1000 to automount script to ensure all users can access files on the SD (it.s a games console not a secure terminal ;)).
 automount() {  
        ! test -d "/media/$name" && mkdir -p "/media/$name"
        
-       if ! $MOUNT -t auto -o sync,uid=1000 $DEVNAME "/media/$name" && ! $MOUNT -t auto -o sync $DEVNAME "/media/$name"
+       if ! $MOUNT -t auto -o sync,noatime,umask=0 $DEVNAME "/media/$name" && \
+                       ! $MOUNT -t auto -o sync,noatime $DEVNAME "/media/$name"
        then
                #logger "mount.sh/automount" "$MOUNT -t auto $DEVNAME \"/media/$name\" failed!"
                rm_dir "/media/$name"