diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-10 13:23:38 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-10 13:23:38 +0100 |
commit | b7fa205f8bf55ba2f5048cdc0c69f3ad73f0db4b (patch) | |
tree | 65d80c14c5b445b7d286a5c024403f0007468fb5 /package/base-files | |
parent | f845241dfccddd44ac12f055e04a57600666b67d (diff) |
fix my broken commit, remount not required
Diffstat (limited to 'package/base-files')
-rw-r--r-- | package/base-files/Makefile | 2 | ||||
-rwxr-xr-x | package/base-files/src/init | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index e3eb84fbf..c2a4e6a3f 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/mk/rootfs.mk PKG_NAME:= base-files PKG_VERSION:= 1.0 -PKG_RELEASE:= 28 +PKG_RELEASE:= 29 PKG_SECTION:= base PKG_DESCR:= basic files and scripts diff --git a/package/base-files/src/init b/package/base-files/src/init index 553cb5b3d..096209cdc 100755 --- a/package/base-files/src/init +++ b/package/base-files/src/init @@ -6,7 +6,7 @@ mount -o nosuid,nodev,noexec -t sysfs sysfs /sys [ ! -f /etc/notmpfs ] && { size=$(cat /etc/tmpfs 2>/dev/null) [ -z $size ] && size=2048 - mount none /tmp -t tmpfs -o remount,nosuid,nodev,mode=1777,size=${size}k + mount tmpfs /tmp -t tmpfs -o nosuid,nodev,mode=1777,size=${size}k } mount -o remount,nosuid,size=128k,mode=0755 -t tmpfs mdev /dev mkdir /dev/pts /dev/shm |