I find "/media/fat" to be a problem when data resides elsewhere. Should we start using a symlink "/media/MiSTer" to point to the actual data folder?
Benefits:
- path independent scripts that work on sdcard and usb
- easily switch from sdcard to usb storage by updating the symlink
Code: Select all
drwxr-xr-x 2 root root 40 Jan 1 1970 cifs
drwxr-xr-x 32 root root 131072 Jan 1 1970 fat
drwxr-xr-x 2 root root 40 Jan 1 1970 rootfs
drwxr-xr-x 2 root root 40 Jan 1 1970 usb0
drwxr-xr-x 2 root root 40 Jan 1 1970 usb1
drwxr-xr-x 2 root root 40 Jan 1 1970 usb2
lrwxrwxrwx 1 root root 40 Jan 1 1970 MiSTer -> fat
Code: Select all
drwxr-xr-x 2 root root 40 Jan 1 1970 cifs
drwxr-xr-x 32 root root 40 Jan 1 1970 fat
drwxr-xr-x 2 root root 40 Jan 1 1970 rootfs
drwxr-xr-x 2 root root 131072 Jan 1 1970 usb0
drwxr-xr-x 2 root root 40 Jan 1 1970 usb1
drwxr-xr-x 2 root root 40 Jan 1 1970 usb2
lrwxrwxrwx 1 root root 40 Jan 1 1970 MiSTer -> usb0