Bladeren bron

add a method to avoid /tmp as tmpfs

- useful f.e. for a shuttle pc
- fix tty permissions, needed for non-root users
Waldemar Brodkorb 14 jaren geleden
bovenliggende
commit
107e95cd02

+ 1 - 1
package/base-files/Makefile

@@ -6,7 +6,7 @@ include $(TOPDIR)/mk/rootfs.mk
 
 PKG_NAME:=		base-files
 PKG_VERSION:=		1.0
-PKG_RELEASE:=		5
+PKG_RELEASE:=		6
 PKG_DESCR:=		basic filesystem structure and scripts
 PKG_SECTION:=		base
 

+ 1 - 1
package/base-files/extra/etc/mdev.conf

@@ -6,6 +6,6 @@ kmem 0:0 000
 mem 0:0 0640
 port 0:0 0640
 ptmx 0:0 666
-tty 0:0 0660
+tty 0:0 0666
 ttyS* 0:0 640
 .* 0:0 644 @/lib/mdev/init

+ 5 - 3
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

+ 1 - 1
target/native/files/etc/mdev.conf

@@ -9,6 +9,6 @@ kmem 0:0 000
 mem 0:0 0640
 port 0:0 0640
 ptmx 0:0 666
-tty 0:0 0660
+tty 0:0 0666
 ttyS* 0:0 640
 .* 0:0 644 @/lib/mdev/init

+ 1 - 1
target/qemu-cris/files/etc/mdev.conf

@@ -8,6 +8,6 @@ kmem 0:9 000
 mem 0:9 0640
 port 0:9 0640
 ptmx 0:5 666
-tty 0:5 0660
+tty 0:0 0666
 ttyS* 0:20 640
 .* 0:0 644 @/lib/mdev/init

+ 1 - 1
target/rescue-x86/files/etc/mdev.conf

@@ -9,6 +9,6 @@ kmem 0:0 000
 mem 0:0 0640
 port 0:0 0640
 ptmx 0:0 666
-tty 0:0 0660
+tty 0:0 0666
 ttyS* 0:0 640
 .* 0:0 644 @/lib/mdev/init

+ 1 - 1
target/rescue-x86_64/files/etc/mdev.conf

@@ -9,6 +9,6 @@ kmem 0:0 000
 mem 0:0 0640
 port 0:0 0640
 ptmx 0:0 666
-tty 0:0 0660
+tty 0:0 0666
 ttyS* 0:0 640
 .* 0:0 644 @/lib/mdev/init

+ 1 - 1
target/shuttle/files/etc/mdev.conf

@@ -9,6 +9,6 @@ kmem 0:0 000
 mem 0:0 0640
 port 0:0 0640
 ptmx 0:0 666
-tty 0:0 0660
+tty 0:0 0666
 ttyS* 0:0 640
 .* 0:0 644 @/lib/mdev/init

+ 0 - 0
target/shuttle/files/etc/notmpfs