[oe-commits] Stanislav Brabec : udev: Fix possible multiple mounting of /dev, increment PR.

git version control git at git.openembedded.org
Sat Jul 24 13:59:39 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: efc1b721a617a3a895bc4c1ff17d02258e5458e2
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=efc1b721a617a3a895bc4c1ff17d02258e5458e2

Author: Stanislav Brabec <sbrabec at suse.cz>
Date:   Sat Jul 24 15:39:52 2010 +0200

udev: Fix possible multiple mounting of /dev, increment PR.
* http://lists.linuxtogo.org/pipermail/openembedded-devel/2010-July/021663.html

Signed-off-by: Stanislav Brabec <utx at penguin.cz>
Acked-by: Andrea Adami <andrea.adami at gmail.com>

---

 recipes/udev/udev-124/init |    2 +-
 recipes/udev/udev-141/init |    2 +-
 recipes/udev/udev-151/init |    2 +-
 recipes/udev/udev-154/init |    2 +-
 recipes/udev/udev.inc      |    2 +-
 recipes/udev/udev_124.bb   |    2 +-
 recipes/udev/udev_141.bb   |    2 +-
 recipes/udev/udev_151.bb   |    2 +-
 recipes/udev/udev_154.bb   |    2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/recipes/udev/udev-124/init b/recipes/udev/udev-124/init
index efe4470..1009381 100644
--- a/recipes/udev/udev-124/init
+++ b/recipes/udev/udev-124/init
@@ -29,7 +29,7 @@ export ACTION=add
 echo -n "Starting udev"
 
 # mount the tmpfs on /dev, if not already done
-LANG=C awk "\$2 == \"/dev\" && \$4 == \"tmpfs\" { exit 1 }" /proc/mounts && {
+LANG=C awk "\$2 == \"/dev\" && \$3 == \"tmpfs\" { exit 1 }" /proc/mounts && {
         mount -n -o mode=0755 -t tmpfs none "/dev"
         mkdir -m 0755 /dev/pts
         mkdir -m 0755 /dev/shm
diff --git a/recipes/udev/udev-141/init b/recipes/udev/udev-141/init
index 66705e6..efd9c23 100644
--- a/recipes/udev/udev-141/init
+++ b/recipes/udev/udev-141/init
@@ -29,7 +29,7 @@ export ACTION=add
 echo "Starting udev"
 
 # mount the tmpfs on /dev, if not already done
-LANG=C awk "\$2 == \"/dev\" && \$4 == \"tmpfs\" { exit 1 }" /proc/mounts && {
+LANG=C awk "\$2 == \"/dev\" && \$3 == \"tmpfs\" { exit 1 }" /proc/mounts && {
         mount -n -o mode=0755 -t tmpfs none "/dev"
         mkdir -m 0755 /dev/pts
         mkdir -m 1777 /dev/shm
diff --git a/recipes/udev/udev-151/init b/recipes/udev/udev-151/init
index f4dc5de..fea2ca6 100644
--- a/recipes/udev/udev-151/init
+++ b/recipes/udev/udev-151/init
@@ -29,7 +29,7 @@ export ACTION=add
 echo "Starting udev"
 
 # mount the tmpfs on /dev, if not already done
-LANG=C awk "\$2 == \"/dev\" && \$4 == \"tmpfs\" { exit 1 }" /proc/mounts && {
+LANG=C awk "\$2 == \"/dev\" && \$3 == \"tmpfs\" { exit 1 }" /proc/mounts && {
         mount -n -o mode=0755 -t tmpfs none "/dev"
         mkdir -m 0755 /dev/pts
         mkdir -m 1777 /dev/shm
diff --git a/recipes/udev/udev-154/init b/recipes/udev/udev-154/init
index f4dc5de..fea2ca6 100644
--- a/recipes/udev/udev-154/init
+++ b/recipes/udev/udev-154/init
@@ -29,7 +29,7 @@ export ACTION=add
 echo "Starting udev"
 
 # mount the tmpfs on /dev, if not already done
-LANG=C awk "\$2 == \"/dev\" && \$4 == \"tmpfs\" { exit 1 }" /proc/mounts && {
+LANG=C awk "\$2 == \"/dev\" && \$3 == \"tmpfs\" { exit 1 }" /proc/mounts && {
         mount -n -o mode=0755 -t tmpfs none "/dev"
         mkdir -m 0755 /dev/pts
         mkdir -m 1777 /dev/shm
diff --git a/recipes/udev/udev.inc b/recipes/udev/udev.inc
index f4f1c40..2edc10b 100644
--- a/recipes/udev/udev.inc
+++ b/recipes/udev/udev.inc
@@ -14,7 +14,7 @@ SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
            file://init \
 	   file://udev-compat-wrapper-patch"
 
-INC_PR = "r27"
+INC_PR = "r28"
 
 inherit update-rc.d autotools pkgconfig
 
diff --git a/recipes/udev/udev_124.bb b/recipes/udev/udev_124.bb
index 30b0499..d0d5420 100644
--- a/recipes/udev/udev_124.bb
+++ b/recipes/udev/udev_124.bb
@@ -5,7 +5,7 @@ RPROVIDES_${PN} = "hotplug"
 
 require udev.inc
 
-PR = "${INC_PR}.0"
+PR = "${INC_PR}.1"
 
 LD = "${CC}"
 
diff --git a/recipes/udev/udev_141.bb b/recipes/udev/udev_141.bb
index 3ef9f7d..798590c 100644
--- a/recipes/udev/udev_141.bb
+++ b/recipes/udev/udev_141.bb
@@ -7,7 +7,7 @@ DEFAULT_PREFERENCE = "-1"
 
 require udev.inc
 
-PR = "${INC_PR}.0"
+PR = "${INC_PR}.1"
 
 SRC_URI += "file://mount.blacklist \
 	    file://run.rules \
diff --git a/recipes/udev/udev_151.bb b/recipes/udev/udev_151.bb
index ce97a7b..eb0d6a9 100644
--- a/recipes/udev/udev_151.bb
+++ b/recipes/udev/udev_151.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod
 the hotplug package and requires a kernel not older than 2.6.12."
 LICENSE = "GPLv2+"
 
-PR = "r12"
+PR = "r13"
 
 # Untested
 DEFAULT_PREFERENCE = "-1"
diff --git a/recipes/udev/udev_154.bb b/recipes/udev/udev_154.bb
index 6032215..3cf6358 100644
--- a/recipes/udev/udev_154.bb
+++ b/recipes/udev/udev_154.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod
 the hotplug package and requires a kernel not older than 2.6.12."
 LICENSE = "GPLv2+"
 
-PR = "r0"
+PR = "r1"
 
 # Untested
 DEFAULT_PREFERENCE = "-1"





More information about the Openembedded-commits mailing list