14 lines
683 B
Plaintext
14 lines
683 B
Plaintext
#KERNEL!="sd[a-z][0-9]", GOTO="sd_cards_auto_mount_end"
|
|
KERNEL!="mmcblk[0-9]p[0-9]|sd[a-z][0-9]", GOTO="sd_cards_auto_mount_end"
|
|
|
|
# Global mount options
|
|
ACTION=="add", ENV{mount_options}="relatime"
|
|
|
|
# Filesystem specific options
|
|
ACTION=="add", IMPORT{program}="/sbin/blkid -o udev -p %N"
|
|
ACTION=="add", ENV{ID_FS_TYPE}=="vfat", ENV{mount_options}="$env{mount_options},utf8,flush,user,umask=0000"
|
|
ACTION=="add", RUN+="/bin/mkdir -p /media/sd-%k", RUN+="/bin/mount -o $env{mount_options} /dev/%k /media/sd-%k"
|
|
ACTION=="add", RUN+="/usr/local/bin/autorun /media/sd-%k"
|
|
ACTION=="remove", RUN+="/bin/umount -l /media/sd-%k", RUN+="/bin/rmdir /media/sd-%k"
|
|
LABEL="sd_cards_auto_mount_end"
|