[OE-core] [PATCH 11/16] udev: ensure /dev/pts and /dev/shm does exists

Richard Purdie richard.purdie at linuxfoundation.org
Wed Jan 4 17:12:59 UTC 2012


On Wed, 2011-12-28 at 19:55 +0000, Otavio Salvador wrote:
> ---
>  meta/recipes-core/udev/udev/init |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init
> index d0d7e5d..c2b491e 100644
> --- a/meta/recipes-core/udev/udev/init
> +++ b/meta/recipes-core/udev/udev/init
> @@ -30,9 +30,10 @@ echo -n "Starting udev"
>  # mount the tmpfs on /dev, if not already done
>  LANG=C awk '$2 == "/dev" && ($3 == "tmpfs" || $3 == "devtmpfs") { exit 1 }' /proc/mounts && {
>  	mount -n -o mode=0755 -t tmpfs none "/dev"
> -	mkdir -m 0755 /dev/pts
> -	mkdir -m 1777 /dev/shm
>  }
> +mkdir -p -m 0755 /dev/pts
> +mkdir -p -m 1777 /dev/shm
> +

Please put an if [ -e ] around these since its a couple of exec calls we
could do without if they already exist...

Cheers,

Richard





More information about the Openembedded-core mailing list