aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/udev/udev-092
diff options
context:
space:
mode:
authorMaxime Petazzoni <mpetazzoni@mvista.com>2009-09-01 17:20:30 +0200
committerChris Larson <clarson@mvista.com>2009-12-09 11:47:09 -0700
commit9de20344a049c623228cc76e564bb7852992698c (patch)
treeebacdb5c6ebaba5149af460441e3d6e479ed8880 /recipes/udev/udev-092
parent9e047cb931b2047b611d2df1b960a7adc14afa67 (diff)
downloadopenembedded-9de20344a049c623228cc76e564bb7852992698c.tar.gz
udev: exclude mtd* from persistent storage rules
Exclude mtd* devices from the persistent storage rules to avoid invalid vol_id invocations on MTD partitions that may not be accessible. Signed-off-by: Maxime Petazzoni <mpetazzoni@mvista.com>
Diffstat (limited to 'recipes/udev/udev-092')
-rw-r--r--recipes/udev/udev-092/mtd-exclude-persistent.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/recipes/udev/udev-092/mtd-exclude-persistent.patch b/recipes/udev/udev-092/mtd-exclude-persistent.patch
new file mode 100644
index 0000000000..30032d402d
--- /dev/null
+++ b/recipes/udev/udev-092/mtd-exclude-persistent.patch
@@ -0,0 +1,17 @@
+Copyright (c) 2009 MontaVista Software, Inc. All rights reserved.
+
+---
+ etc/udev/60-persistent-storage.rules | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- udev-092.orig/etc/udev/60-persistent-storage.rules
++++ udev-092/etc/udev/60-persistent-storage.rules
+@@ -5,7 +5,7 @@ ACTION!="add", GOTO="persistent_storage_
+ SUBSYSTEM!="block", GOTO="persistent_storage_end"
+
+ # skip rules for inappropriate block devices
+-KERNEL=="ram*|loop*|fd*|nbd*", GOTO="persistent_storage_end"
++KERNEL=="ram*|loop*|fd*|mtd*|nbd*", GOTO="persistent_storage_end"
+
+ # never access removable ide devices, the drivers are causing event loops on open()
+ KERNEL=="hd*[!0-9]", SYSFS{removable}=="1", DRIVER=="ide-cs|ide-floppy", GOTO="persistent_storage_end"