dd27532916
- Fix a couple of issues found by Coverity (#1938890) - Ignore systemd "Extended Boot Loader" GPT partition Resolves: #1938890
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
From 79eed9aa35fbf1c5131b44b50b407742f68e2f61 Mon Sep 17 00:00:00 2001
|
|
From: Florian Ziegler <florian.ziegler@posteo.de>
|
|
Date: Sat, 17 Apr 2021 13:31:31 +0200
|
|
Subject: [PATCH 8/8] Ignore "Extended Boot Loader" GPT partition
|
|
|
|
---
|
|
data/80-udisks2.rules | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/data/80-udisks2.rules b/data/80-udisks2.rules
|
|
index fb50f48a..39bfa28b 100644
|
|
--- a/data/80-udisks2.rules
|
|
+++ b/data/80-udisks2.rules
|
|
@@ -135,6 +135,12 @@ ENV{ID_PART_ENTRY_SCHEME}=="gpt", \
|
|
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|e3c9e316-0b5c-4db8-817d-f92df00215ae|de94bba4-06d1-4d40-a16a-bfd50179d6ac", \
|
|
ENV{UDISKS_IGNORE}="1"
|
|
|
|
+# special Extended Boot Loader partition (XBOOTLDR)
|
|
+# see https://systemd.io/BOOT_LOADER_SPECIFICATION/
|
|
+ENV{ID_PART_ENTRY_SCHEME}=="gpt", \
|
|
+ ENV{ID_PART_ENTRY_TYPE}=="bc13c2ff-59e6-4262-a352-b275fd6f7172", \
|
|
+ ENV{UDISKS_IGNORE}="1"
|
|
+
|
|
# ZFS member partitions
|
|
ENV{ID_PART_ENTRY_SCHEME}=="gpt", \
|
|
ENV{ID_FS_TYPE}=="zfs_member", ENV{ID_PART_ENTRY_TYPE}=="6a898cc3-1dd2-11b2-99a6-080020736631", \
|
|
--
|
|
2.30.2
|
|
|