summaryrefslogtreecommitdiffstats
path: root/meta-agl/recipes-core/systemd/systemd/automount-rules
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2017-03-27 21:24:12 +0300
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2017-04-04 08:46:11 +0000
commit8fc617944db680bcc77564b339bb6c44eca24044 (patch)
tree97b812535b11c013757c0a55a802c1b86f2be87c /meta-agl/recipes-core/systemd/systemd/automount-rules
parentb527bd9a01a3a6e253f8c9924dfa717db7e42717 (diff)
Add media automounting support
Use the automount.rules from udev-extraconf for mounting and unmounting removable media AGL-Issue: SPEC-483 Change-Id: I8c0353a76d5080ec2e4eff9dc4a48ba771e7a393 Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'meta-agl/recipes-core/systemd/systemd/automount-rules')
-rw-r--r--meta-agl/recipes-core/systemd/systemd/automount-rules19
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-agl/recipes-core/systemd/systemd/automount-rules b/meta-agl/recipes-core/systemd/systemd/automount-rules
new file mode 100644
index 000000000..62578ea63
--- /dev/null
+++ b/meta-agl/recipes-core/systemd/systemd/automount-rules
@@ -0,0 +1,19 @@
+# There are a number of modifiers that are allowed to be used in some
+# of the different fields. They provide the following subsitutions:
+#
+# %n the "kernel number" of the device.
+# For example, 'sda3' has a "kernel number" of '3'
+# %e the smallest number for that name which does not matches an existing node
+# %k the kernel name for the device
+# %M the kernel major number for the device
+# %m the kernel minor number for the device
+# %b the bus id for the device
+# %c the string returned by the PROGRAM
+# %s{filename} the content of a sysfs attribute
+# %% the '%' char itself
+#
+
+# Media automounting
+SUBSYSTEM=="block", ACTION=="add" RUN+="/etc/udev/scripts/mount.sh"
+SUBSYSTEM=="block", ACTION=="remove" RUN+="/etc/udev/scripts/mount.sh"
+SUBSYSTEM=="block", ACTION=="change", ENV{DISK_MEDIA_CHANGE}=="1" RUN+="/etc/udev/scripts/mount.sh"