From 620b3dc6655dc360b724c95881505c3221aa2a38 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 25 Jul 2010 11:03:11 +0200 Subject: [PATCH] busybox: mount /dev/shm at boottime Signed-off-by: Stephan Raue --- packages/sysutils/busybox/scripts/init | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/sysutils/busybox/scripts/init b/packages/sysutils/busybox/scripts/init index 09c7277e33..275111ca51 100755 --- a/packages/sysutils/busybox/scripts/init +++ b/packages/sysutils/busybox/scripts/init @@ -31,6 +31,9 @@ mkdir -p /dev/pts mount -n -t devpts -o gid=5,mode=620 none /dev/pts + mkdir -p /dev/shm + mount -n -t tmpfs none /dev/shm + # starting init scripts for wanted runlevel . /etc/profile