From 60e0f6c6ea97757d416847246817b850eec3b5c0 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Tue, 18 May 2010 14:06:33 +0200 Subject: [PATCH] busybox: - mount filesystems earlyer - mount also /proc /sys /dev /dev/pts from here --- .../{05_mount_filesystem => 00_mount_filesystem} | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) rename packages/sysutils/busybox/init.d/{05_mount_filesystem => 00_mount_filesystem} (80%) diff --git a/packages/sysutils/busybox/init.d/05_mount_filesystem b/packages/sysutils/busybox/init.d/00_mount_filesystem similarity index 80% rename from packages/sysutils/busybox/init.d/05_mount_filesystem rename to packages/sysutils/busybox/init.d/00_mount_filesystem index d6d5380b60..22027f31e3 100755 --- a/packages/sysutils/busybox/init.d/05_mount_filesystem +++ b/packages/sysutils/busybox/init.d/00_mount_filesystem @@ -29,4 +29,14 @@ progress "mounting needed filesystems" - $IONICE mount -n -t ramfs none /var + mount -n -t proc none /proc + mount -n -t sysfs none /sys + + echo 0 > /sys/devices/virtual/graphics/fbcon/cursor_blink + + mount -n -t devtmpfs none /dev + + mkdir -p /dev/pts + mount -n -t devpts -o gid=5,mode=620 none /dev/pts + + mount -n -t ramfs none /var