mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-22 00:00:03 +03:00
udev: Persistent names for cached devices
Add /dev/bcache/by-uuid/ symlinks to cached devices.
This commit is contained in:
parent
0344939e54
commit
0b2587b5bc
@ -1,8 +1,18 @@
|
||||
# register bcache devices as they come up
|
||||
# man 7 udev for syntax
|
||||
|
||||
SUBSYSTEM=="block", IMPORT{program}="/sbin/probe-bcache -o udev $tempnode"
|
||||
SUBSYSTEM!="block", GOTO="bcache_end"
|
||||
ACTION=="remove", GOTO="bcache_end"
|
||||
|
||||
# Backing devices: scan, symlink, register
|
||||
IMPORT{program}="/sbin/probe-bcache -o udev $tempnode"
|
||||
ENV{ID_FS_UUID_ENC}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID_ENC}"
|
||||
SUBSYSTEM=="block", ACTION=="add|change", ENV{ID_FS_TYPE}=="bcache", \
|
||||
RUN+="bcache-register $tempnode"
|
||||
|
||||
# Cached devices: symlink
|
||||
DRIVER=="bcache", ENV{CACHED_UUID}=="?*", \
|
||||
SYMLINK+="bcache/by-uuid/$env{CACHED_UUID}"
|
||||
|
||||
LABEL="bcache_end"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user