From: Kay Sievers Date: Tue, 24 Mar 2015 22:28:25 +0000 (+0100) Subject: rules: storage - whitelist partitioned MS & MMC devices X-Git-Tag: v219.0~237 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=174470fbf1cba7e812111e19b568fab49f5966aa;hp=6bd7941ece602ae9962a103c8d65ecda7d642391 rules: storage - whitelist partitioned MS & MMC devices On Mon, Mar 23, 2015 at 8:55 AM, Mantas Mikulėnas wrote: > On Tue, Mar 17, 2015 at 11:50 PM, Kay Sievers wrote: >> On Tue, Mar 17, 2015 at 5:00 PM, Mantas Mikulėnas >> wrote: >> > Accidentally dropped in 1aff20687f4868575. >> > --- >> > rules/60-persistent-storage.rules | 2 +- >> > 1 file changed, 1 insertion(+), 1 deletion(-) >> >> > +KERNEL!="loop*|mmcblk[0-9]*|mspblk[0-9]*|nvme*|sd*|sr*|vd*", >> > GOTO="persistent_storage_end" >> >> We can't do that, we need to ignore the mmc*rpmb devices: >> >> http://cgit.freedesktop.org/systemd/systemd/commit/?id=b87b01cf83947f467f3c46d9831cd67955fc46b9 >> >> Maybe "mmcblk*[0-9]" will work? > > Yeah, that would probably work (the names are like mmcblk0p1 etc.) --- diff --git a/rules/60-persistent-storage.rules b/rules/60-persistent-storage.rules index 11240508a..341ef9c07 100644 --- a/rules/60-persistent-storage.rules +++ b/rules/60-persistent-storage.rules @@ -6,7 +6,7 @@ ACTION=="remove", GOTO="persistent_storage_end" SUBSYSTEM!="block", GOTO="persistent_storage_end" -KERNEL!="loop*|mmcblk[0-9]|mspblk[0-9]|nvme*|sd*|sr*|vd*", GOTO="persistent_storage_end" +KERNEL!="loop*|mmcblk*[0-9]|mspblk*[0-9]|nvme*|sd*|sr*|vd*", GOTO="persistent_storage_end" # ignore partitions that span the entire disk TEST=="whole_disk", GOTO="persistent_storage_end"