diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-05 19:58:50 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-05 19:58:50 +0200 |
commit | e874f84fdb6eb83d905a72b35d87398374594b97 (patch) | |
tree | 38ecc86989a194756836fa411c4bfb7c4b68913f /package/base-files/extra/init | |
parent | 68e89ea1a3ec3690ddefbd97c45174f799847a16 (diff) |
more regressions found at runtime on alic1c
Diffstat (limited to 'package/base-files/extra/init')
-rwxr-xr-x | package/base-files/extra/init | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/extra/init b/package/base-files/extra/init index 567993cbb..0d4f3d623 100755 --- a/package/base-files/extra/init +++ b/package/base-files/extra/init @@ -1,8 +1,9 @@ #!/bin/sh export PATH=/bin:/sbin:/usr/bin:/usr/sbin mount -nt proc proc /proc +size=$(awk '/MemTotal:/ { if ($2 > 16000) { print 4096 } else { print 2048 }}' /proc/meminfo) mount -o nosuid,nodev,noexec -t sysfs sysfs /sys -mount none /tmp -t tmpfs -o size=2M +mount none /tmp -t tmpfs -o size=$size mount none /tmp -t tmpfs -o remount,nosuid,nodev,mode=1777 mount -o nosuid,size=64k,mode=0755 -t tmpfs mdev /dev mkdir /dev/pts /dev/shm |