mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
17 lines
485 B
Plaintext
17 lines
485 B
Plaintext
# dont run in "installer" mode
|
|
IMPORT{cmdline}="installer"
|
|
ENV{installer}=="1", GOTO="exit"
|
|
|
|
# check for blockdevices, /dev/sd* and /dev/sr*
|
|
SUBSYSTEM!="block", KERNEL!="sd*|sr*",GOTO="exit"
|
|
IMPORT{builtin}="blkid"
|
|
|
|
# /dev/sd* with partitions/disk and filesystems only and /dev/sr* disks only
|
|
KERNEL=="sd*", ENV{DEVTYPE}=="partition|disk", ENV{ID_FS_USAGE}=="filesystem", RUN+="udevil_helper"
|
|
KERNEL=="sr*", ENV{DEVTYPE}=="disk", RUN+="udevil_helper"
|
|
GOTO="exit"
|
|
|
|
# Exit
|
|
LABEL="exit"
|
|
|