diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-09-17 19:19:28 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-09-17 19:19:28 +0200 |
commit | 107e95cd028c183f73705bf04a5dc2b99fa1c258 (patch) | |
tree | 8f8655a8cd92ab0eb306024102c9605b31082dbb /package/base-files/extra/init | |
parent | c2778054a28a608fc279366b3e63ba75977d671d (diff) |
add a method to avoid /tmp as tmpfs
- useful f.e. for a shuttle pc
- fix tty permissions, needed for non-root users
Diffstat (limited to 'package/base-files/extra/init')
-rwxr-xr-x | package/base-files/extra/init | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/package/base-files/extra/init b/package/base-files/extra/init index 4b4e90213..9013065d0 100755 --- a/package/base-files/extra/init +++ b/package/base-files/extra/init @@ -2,10 +2,12 @@ echo "Pre-boot initializing" 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=${size}k -mount none /tmp -t tmpfs -o remount,nosuid,nodev,mode=1777 +[ ! -f /etc/notmpfs ] && { + size=$(awk '/MemTotal:/ { if ($2 > 16000) { print 4096 } else { print 2048 }}' /proc/meminfo) + mount none /tmp -t tmpfs -o size=${size}k + 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 mount -o nosuid,noexec -t devpts devpts /dev/pts |