From: Koen Kooi Date: Mon, 1 Jun 2009 13:45:40 +0000 (+0200) Subject: udev: Allow standard users to access shared memory (from poky) X-Git-Tag: Release-2010-05/1~3312 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e400d1a3f29cd22d3be2215370f5cced95266f7b;p=openembedded.git udev: Allow standard users to access shared memory (from poky) --- diff --git a/recipes/udev/udev-141/init b/recipes/udev/udev-141/init index 7188b5a777..facc4ab652 100644 --- a/recipes/udev/udev-141/init +++ b/recipes/udev/udev-141/init @@ -32,7 +32,7 @@ echo -n "Starting udev" LANG=C awk "\$2 == \"/dev\" && \$4 == \"tmpfs\" { exit 1 }" /proc/mounts && { mount -n -o mode=0755 -t tmpfs none "/dev" mkdir -m 0755 /dev/pts - mkdir -m 0755 /dev/shm + mkdir -m 1777 /dev/shm } if [ "$DEVCACHE" != "" ]; then diff --git a/recipes/udev/udev_141.bb b/recipes/udev/udev_141.bb index 040189faf5..44e6b4db96 100644 --- a/recipes/udev/udev_141.bb +++ b/recipes/udev/udev_141.bb @@ -6,7 +6,7 @@ LICENSE = "GPL" # Untested DEFAULT_PREFERENCE = "-1" -PR = "r9" +PR = "r10" # needed for init.d script RDEPENDS_udev += "udev-utils"