blob: 6143088e8c2693e3faa839499945c5607836a2be [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001From 5ebc0d87565a73710dea602c00b1586d5a1364e5 Mon Sep 17 00:00:00 2001
2From: Patrick Ohly <patrick.ohly@intel.com>
3Date: Wed, 16 Sep 2015 13:55:58 +0200
4Subject: [PATCH 12/36] rules: whitelist hd* devices
5
6qemu by default emulates IDE and the linux-yocto kernel(s) use
7CONFIG_IDE instead of the more modern libsata, so disks appear as
8/dev/hd*. Patch rejected upstream because CONFIG_IDE is deprecated.
9
10Upstream-Status: Denied [https://github.com/systemd/systemd/pull/1276]
11
12Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
13---
14 rules/60-persistent-storage.rules | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/rules/60-persistent-storage.rules b/rules/60-persistent-storage.rules
18index 0b14bb4..1c4d97a 100644
19--- a/rules/60-persistent-storage.rules
20+++ b/rules/60-persistent-storage.rules
21@@ -6,7 +6,7 @@
22 ACTION=="remove", GOTO="persistent_storage_end"
23
24 SUBSYSTEM!="block", GOTO="persistent_storage_end"
25-KERNEL!="loop*|mmcblk*[0-9]|msblk*[0-9]|mspblk*[0-9]|nvme*|sd*|sr*|vd*|xvd*|bcache*|cciss*|dasd*|ubd*", GOTO="persistent_storage_end"
26+KERNEL!="loop*|mmcblk*[0-9]|msblk*[0-9]|mspblk*[0-9]|nvme*|hd*|sd*|sr*|vd*|xvd*|bcache*|cciss*|dasd*|ubd*", GOTO="persistent_storage_end"
27
28 # ignore partitions that span the entire disk
29 TEST=="whole_disk", GOTO="persistent_storage_end"
30--
311.8.3.1
32