08-27-2019, 12:25 PM
(This post was last modified: 08-27-2019, 12:27 PM by Tim Curtis.
Edit Reason: etc
)
We could switch to another auto-mounter for example udevil or udisks2, but we have to determine whether they provide the same capabilities as udisks-glue.
1. Auto-mount USB storage devices by disk label to /media
2. Support the following file systems: vfat, ntfs, exfat, hfsplus, ext2, ext3, ext4
3. Run scripts after mount and unmount and pass the mount point name to the scripts. Below is an example from disks-glue.conf of running scripts.
Other options include:
1. Continue with udisks-glue on arm7 and use udevil, udisks2, etc on arm6
2. Try to debug and fix udisks-glue on arm6
-Tim
1. Auto-mount USB storage devices by disk label to /media
2. Support the following file systems: vfat, ntfs, exfat, hfsplus, ext2, ext3, ext4
3. Run scripts after mount and unmount and pass the mount point name to the scripts. Below is an example from disks-glue.conf of running scripts.
Code:
match vfatdisks {
automount = true
automount_options = {noexec,nodev,noatime,nodiratime,'dmask=0022','fmask=0022'}
post_mount_command = '/var/www/command/util.sh smbadd "%mount_point"'
post_unmount_command = '/var/www/command/util.sh smbrem "%mount_point"'
}
Other options include:
1. Continue with udisks-glue on arm7 and use udevil, udisks2, etc on arm6
2. Try to debug and fix udisks-glue on arm6
-Tim