diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-13 02:40:08 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-13 02:40:08 +0200 |
commit | 935e3e5cc7a8e984d54ff7ebd870d50ae47b6aae (patch) | |
tree | 61a206930ddcbeb2f5b614aed07f056f43709498 | |
parent | 70cd22f9737c4f742daa3b46005e40bf1dfc7798 (diff) |
udev: ignore dynamic ram/loop block devices
-rw-r--r-- | src/99-systemd.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/99-systemd.rules b/src/99-systemd.rules index f7d99157f2..ee8deaa5f7 100644 --- a/src/99-systemd.rules +++ b/src/99-systemd.rules @@ -10,7 +10,7 @@ ACTION!="add|change", GOTO="systemd_end" KERNEL=="tty[0-9]|tty1[0-2]", TAG="systemd" KERNEL=="ttyS*", TAG="systemd" -SUBSYSTEM=="block", TAG="systemd" +SUBSYSTEM=="block", KERNEL!="ram*|loop*", TAG="systemd" # DM finds it funny to create additional device nodes, we need to merge them here, so that we recognize identical devices. |