From: Martin Jansa Date: Mon, 1 Mar 2010 13:49:04 +0000 (+0100) Subject: initscripts-shr: create /dev/pts, /dev/shm if they doesn't exist (devtmpfs doesn... X-Git-Tag: Release-2010-05/1~490^2~21 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=517816ac3c3d43cb53569955ad6705f468da6cf4;p=openembedded.git initscripts-shr: create /dev/pts, /dev/shm if they doesn't exist (devtmpfs doesn't create them for us and ssh login fails later due to missing PTYs) Signed-off-by: Martin Jansa --- diff --git a/recipes/shr/initscripts-shr/mountdevsubfs.sh b/recipes/shr/initscripts-shr/mountdevsubfs.sh index c6cfb05af2..4308dab44e 100644 --- a/recipes/shr/initscripts-shr/mountdevsubfs.sh +++ b/recipes/shr/initscripts-shr/mountdevsubfs.sh @@ -4,11 +4,12 @@ test -c /dev/ptmx || mknod -m 666 /dev/ptmx c 5 2 -if [ -d /dev/pts ]; then - mount -n -t devpts devpts /dev/pts -ogid=${TTYGRP},mode=${TTYMODE} +if [ ! -d /dev/pts ]; then + mkdir /dev/pts fi - - -if [ -d /dev/shm ]; then - mount -n -t tmpfs shmfs /dev/shm -omode=0777 +if [ ! -d /dev/shm ]; then + mkdir /dev/shm fi + +mount -n -t devpts devpts /dev/pts -ogid=${TTYGRP},mode=${TTYMODE} +mount -n -t tmpfs shmfs /dev/shm -omode=0777 diff --git a/recipes/shr/initscripts-shr_0.0.1.bb b/recipes/shr/initscripts-shr_0.0.1.bb index 89df6ce375..ac7d83f96b 100644 --- a/recipes/shr/initscripts-shr_0.0.1.bb +++ b/recipes/shr/initscripts-shr_0.0.1.bb @@ -5,7 +5,7 @@ DEPENDS = "" RDEPENDS = "" LICENSE = "GPL" PV = "0.0.1" -PR = "r14" +PR = "r15" RPROVIDES_${PN} = "initscripts" RCONFLICTS_${PN} = "initscripts"