From 51b5c5f889620632d39ea40a1f74c5ed2fdd6578 Mon Sep 17 00:00:00 2001 From: Fabio Massimo Di Nitto Date: Wed, 16 May 2007 20:15:21 +0200 Subject: [PATCH] rules: ignore partitons that span the entire disk --- etc/udev/rules.d/60-persistent-storage.rules | 3 +++ 1 file changed, 3 insertions(+) diff --git a/etc/udev/rules.d/60-persistent-storage.rules b/etc/udev/rules.d/60-persistent-storage.rules index 2af837dc4..a14025999 100644 --- a/etc/udev/rules.d/60-persistent-storage.rules +++ b/etc/udev/rules.d/60-persistent-storage.rules @@ -21,6 +21,9 @@ KERNEL=="ram*|loop*|fd*|nbd*|gnbd*|dm-*|md*", GOTO="persistent_storage_end" KERNEL=="hd*[!0-9]", ATTR{removable}=="1", DRIVERS=="ide-cs|ide-floppy", GOTO="persistent_storage_end" KERNEL=="hd*[0-9]", ATTRS{removable}=="1", GOTO="persistent_storage_end" +# ignore partitions that span the entire disk +ATTR{whole_disk}=="", GOTO="persistent_storage_end" + # for partitions import parent information KERNEL=="*[0-9]", IMPORT{parent}="ID_*" -- 2.30.2