aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2010-06-26 12:20:55 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2010-06-26 13:28:48 +0200
commit38ee732803984de88a449b8ba8296a5deda62771 (patch)
tree5600372faea527e05420a72ee6ef7a1aac302f98
parentc837131336d66a7678abf1e49a316c96d2e66375 (diff)
downloadopenembedded-38ee732803984de88a449b8ba8296a5deda62771.tar.gz
initscripts-shr: workaround missing ttySAC* nodes with devtmpfs
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r--recipes/shr/initscripts-shr/mountdevsubfs.sh3
-rw-r--r--recipes/shr/initscripts-shr_0.0.1.bb2
2 files changed, 4 insertions, 1 deletions
diff --git a/recipes/shr/initscripts-shr/mountdevsubfs.sh b/recipes/shr/initscripts-shr/mountdevsubfs.sh
index 4308dab44e..2a0a7a6b2e 100644
--- a/recipes/shr/initscripts-shr/mountdevsubfs.sh
+++ b/recipes/shr/initscripts-shr/mountdevsubfs.sh
@@ -3,6 +3,9 @@
. /etc/default/devpts
test -c /dev/ptmx || mknod -m 666 /dev/ptmx c 5 2
+test -c /dev/ttySAC0 || mknod /dev/ttySAC0 c 204 64
+test -c /dev/ttySAC1 || mknod /dev/ttySAC1 c 204 65
+test -c /dev/ttySAC2 || mknod /dev/ttySAC2 c 204 66
if [ ! -d /dev/pts ]; then
mkdir /dev/pts
diff --git a/recipes/shr/initscripts-shr_0.0.1.bb b/recipes/shr/initscripts-shr_0.0.1.bb
index 5b91bc903b..07f380a597 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_${PN} = "procps"
LICENSE = "GPL"
PV = "0.0.1"
-PR = "r16"
+PR = "r17"
RCONFLICTS_${PN} = "initscripts"