summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-core/udev/eudev/skip-rules-for-mmc-rpmb-partition.patch30
-rw-r--r--recipes-core/udev/eudev_%.bbappend6
2 files changed, 0 insertions, 36 deletions
diff --git a/recipes-core/udev/eudev/skip-rules-for-mmc-rpmb-partition.patch b/recipes-core/udev/eudev/skip-rules-for-mmc-rpmb-partition.patch
deleted file mode 100644
index 59a8eddc..00000000
--- a/recipes-core/udev/eudev/skip-rules-for-mmc-rpmb-partition.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1skip rules for mmc rpmb partition
2
3Upstream-status: Pending
4
5In FSL SDK 1.6 Kernel, mmc driver has created a new partition
6with "mmcblkXrpmb" if device expresses it support of RPMB.
7
8RPMB (Replay Protected Memory Block), A signed access to a Replay
9Protected Memory Block is provided. This function provides means
10for the system to store data to the specific memory area in an
11authenticated and replay protected manner.
12
13In that case, any read/write access to this partition device will
14report errors which will not impact any fuction.
15
16add rules to skip it.
17
18Signed-off-by: Ting Liu <ting.liu@nxp.com>
19Signed-off-by: Zhenhua Luo <zhenhua.luo@nxp.com>
20
21--- ./rules/60-persistent-storage.rules.orig 2016-03-01 21:07:13.304170363 -0600
22+++ ./rules/60-persistent-storage.rules 2016-03-01 21:07:32.784169668 -0600
23@@ -6,6 +6,7 @@
24 ACTION=="remove", GOTO="persistent_storage_end"
25
26 SUBSYSTEM!="block", GOTO="persistent_storage_end"
27+KERNEL=="mmcblk*rpmb", GOTO="persistent_storage_end"
28 KERNEL!="loop*|mmcblk*[0-9]|msblk*[0-9]|mspblk*[0-9]|nvme*|sd*|sr*|vd*|xvd*|bcache*|cciss*|dasd*|ubd*", GOTO="persistent_storage_end"
29
30 # ignore partitions that span the entire disk
diff --git a/recipes-core/udev/eudev_%.bbappend b/recipes-core/udev/eudev_%.bbappend
deleted file mode 100644
index 4eedfd89..00000000
--- a/recipes-core/udev/eudev_%.bbappend
+++ /dev/null
@@ -1,6 +0,0 @@
1FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:"
2
3SRC_URI_append_qoriq-ppc = " \
4 file://skip-rules-for-mmc-rpmb-partition.patch \
5"
6