diff options
author | Mike Looijmans <mike.looijmans@topic.nl> | 2016-11-01 14:30:56 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-16 10:33:35 +0000 |
commit | 50d97edaeb18a4c6374101d222410a3b0f344bf2 (patch) | |
tree | 82624ff5a2daf159eea877a0cc99641cd804817e | |
parent | 0666c66b2719f59e556c12d5875dea696006ed0b (diff) | |
download | openembedded-core-50d97edaeb18a4c6374101d222410a3b0f344bf2.tar.gz openembedded-core-50d97edaeb18a4c6374101d222410a3b0f344bf2.tar.bz2 openembedded-core-50d97edaeb18a4c6374101d222410a3b0f344bf2.zip |
busybox/mdev.conf: Ignore eMMC RPMB and boot block devices
eMMC devices may report block devices like "mmcblk0rpmb" and
"mmcblk0boot0". These are not actually block devices and any
read/write operation on them will fail. To prevent spamming error
messages attempting to mount them, just ignore these devices.
(From OE-Core rev: 9f4a85eb929f67420d9689d7dddadd120ed49843)
Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta/recipes-core/busybox/files/mdev.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/busybox/files/mdev.conf b/meta/recipes-core/busybox/files/mdev.conf index 17e93da7c3..4e9c23f14b 100644 --- a/meta/recipes-core/busybox/files/mdev.conf +++ b/meta/recipes-core/busybox/files/mdev.conf @@ -39,4 +39,6 @@ input/mouse.* 0:0 0660 tun[0-9]* 0:0 0660 =net/ [hs]d[a-z][0-9]? 0:0 660 */etc/mdev/mdev-mount.sh +mmcblk[0-9]rpmb 0:0 660 +mmcblk[0-9]boot[0-9] 0:0 660 mmcblk[0-9].* 0:0 660 */etc/mdev/mdev-mount.sh |