diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2015-09-21 16:30:10 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-28 12:00:20 +0100 |
commit | 5702a19f1c91f9d091a15ad30e73f946c5f9fd31 (patch) | |
tree | 097a21ca39598609af1b02b63f0a3ec1f7576be1 | |
parent | cb24cbbb0262a9273cc41f0e3355c94e717bcff3 (diff) | |
download | poky-5702a19f1c91f9d091a15ad30e73f946c5f9fd31.tar.gz |
systemd: apply persistent storage udev rules also for /dev/hd*
This fixes booting with initramfs and root=UUID on machines with IDE
disks, like "runqemu hdddirect", and kernels which still use the
deprecated CONFIG_IDE.
v2: Rebased against current master-next.
(From OE-Core rev: 3d27dfb7e78b8e17b76fcc1d8f8e2b29ca26b0df)
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/systemd/systemd/rules-whitelist-hd-devices.patch | 32 | ||||
-rw-r--r-- | meta/recipes-core/systemd/systemd_225.bb | 1 |
2 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-core/systemd/systemd/rules-whitelist-hd-devices.patch b/meta/recipes-core/systemd/systemd/rules-whitelist-hd-devices.patch new file mode 100644 index 0000000000..8975b05e01 --- /dev/null +++ b/meta/recipes-core/systemd/systemd/rules-whitelist-hd-devices.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From f77b7e5626e70c3a775e993816a33af5a61dea42 Mon Sep 17 00:00:00 2001 | ||
2 | From: Patrick Ohly <patrick.ohly@intel.com> | ||
3 | Date: Wed, 16 Sep 2015 13:55:58 +0200 | ||
4 | Subject: [PATCH] rules: whitelist hd* devices | ||
5 | |||
6 | qemu by default emulates IDE and the linux-yocto kernel(s) use | ||
7 | CONFIG_IDE instead of the more modern libsata, so disks appear as | ||
8 | /dev/hd*. Patch rejected upstream because CONFIG_IDE is deprecated. | ||
9 | |||
10 | Upstream-Status: Denied [https://github.com/systemd/systemd/pull/1276] | ||
11 | |||
12 | Signed-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 | |||
17 | diff --git a/rules/60-persistent-storage.rules b/rules/60-persistent-storage.rules | ||
18 | index 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 | -- | ||
31 | 2.1.4 | ||
32 | |||
diff --git a/meta/recipes-core/systemd/systemd_225.bb b/meta/recipes-core/systemd/systemd_225.bb index ef8d297e02..4f90ef6edf 100644 --- a/meta/recipes-core/systemd/systemd_225.bb +++ b/meta/recipes-core/systemd/systemd_225.bb | |||
@@ -45,6 +45,7 @@ SRC_URI = "git://github.com/systemd/systemd.git;protocol=git \ | |||
45 | file://00-create-volatile.conf \ | 45 | file://00-create-volatile.conf \ |
46 | file://init \ | 46 | file://init \ |
47 | file://run-ptest \ | 47 | file://run-ptest \ |
48 | file://rules-whitelist-hd-devices.patch \ | ||
48 | " | 49 | " |
49 | SRC_URI_append_qemuall = " file://qemuall_io_latency-core-device.c-Change-the-default-device-timeout-to-2.patch" | 50 | SRC_URI_append_qemuall = " file://qemuall_io_latency-core-device.c-Change-the-default-device-timeout-to-2.patch" |
50 | 51 | ||