From 8b0060a1781fffe3a3115180622e7e5f115cf644 Mon Sep 17 00:00:00 2001 From: David Zeuthen Date: Tue, 26 Jun 2012 13:56:20 -0400 Subject: [PATCH] =?utf8?q?Bug=2051439=20=E2=80=93=20udisks=20should=20hide?= =?utf8?q?=20lvm=20PVs?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Hide partitions marked as containing LVM and RAID. This is only useful for encrypted partitions. https://bugs.freedesktop.org/show_bug.cgi?id=51439 Signed-off-by: David Zeuthen --- data/80-udisks2.rules | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/data/80-udisks2.rules b/data/80-udisks2.rules index ea2a2a8..449287c 100644 --- a/data/80-udisks2.rules +++ b/data/80-udisks2.rules @@ -69,20 +69,24 @@ SUBSYSTEMS=="usb", ENV{ID_VENDOR}=="HP", ENV{ID_MODEL}=="*v125w*", ENV{ID_DRIVE_ # ------------------------------------------------------------------------ # Devices which should not be display in the user interface # +# (note that RAID/LVM members are not normally shown in an user +# interface so setting UDISKS_IGNORE at first does not seem to achieve +# anything. However it helps for RAID/LVM members that are encrypted +# using LUKS. See bug #51439.) # Apple Bootstrap partitions ENV{ID_PART_ENTRY_SCHEME}=="mac", ENV{ID_PART_ENTRY_TYPE}=="Apple_Bootstrap", ENV{UDISKS_IGNORE}="1" -# special DOS partition types (EFI, hidden, etc.) +# special DOS partition types (EFI, hidden, etc.) and RAID/LVM # see http://www.win.tue.nl/~aeb/partitions/partition_types-1.html ENV{ID_PART_ENTRY_SCHEME}=="dos", \ - ENV{ID_PART_ENTRY_TYPE}=="0x0|0x11|0x12|0x14|0x16|0x17|0x1b|0x1c|0x1e|0x27|0x3d|0x84|0x8d|0x90|0x91|0x92|0x93|0x97|0x98|0x9a|0x9b|0xbb|0xc2|0xc3|0xdd|0xef", \ + ENV{ID_PART_ENTRY_TYPE}=="0x0|0x11|0x12|0x14|0x16|0x17|0x1b|0x1c|0x1e|0x27|0x3d|0x84|0x8d|0x8e|0x90|0x91|0x92|0x93|0x97|0x98|0x9a|0x9b|0xbb|0xc2|0xc3|0xdd|0xef|0xfd", \ ENV{UDISKS_IGNORE}="1" -# special GUID-identified partition types (EFI System Partition, BIOS Boot partition) +# special GUID-identified partition types (EFI System Partition, BIOS Boot partition, RAID/LVM) # see http://en.wikipedia.org/wiki/GUID_Partition_Table#Partition_type_GUIDs ENV{ID_PART_ENTRY_SCHEME}=="gpt", \ - ENV{ID_PART_ENTRY_TYPE}=="c12a7328-f81f-11d2-ba4b-00a0c93ec93b|21686148-6449-6e6f-744e-656564454649", \ + ENV{ID_PART_ENTRY_TYPE}=="c12a7328-f81f-11d2-ba4b-00a0c93ec93b|21686148-6449-6e6f-744e-656564454649|a19d880f-05fc-4d3b-a006-743f0f84911e|e6d6d379-f507-44c2-a23c-238f2a3df928", \ ENV{UDISKS_IGNORE}="1" # MAC recovery/tool partitions which are useless on Linux -- 2.7.4