Skip to content

Commit

Permalink
fix broken mount of CD / DVD disks
Browse files Browse the repository at this point in the history
  • Loading branch information
WanWizard committed Jan 3, 2021
1 parent 9194178 commit 1ebcc30
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
21 changes: 21 additions & 0 deletions meta-openpli/recipes-core/udev/files/automount.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# 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"

SUBSYSTEM=="block", KERNEL=="sr?*", ACTION=="add", RUN+="/usr/bin/bdpoll %k -c"
3 changes: 2 additions & 1 deletion meta-openpli/recipes-core/udev/udev-extraconf_1.%.bbappend
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/files:"

SRC_URI += " \
file://mount.sh \
file://automount.rules \
file://localextra.rules \
"
"

0 comments on commit 1ebcc30

Please sign in to comment.