diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-07 00:28:15 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-07 00:28:15 +0000 |
commit | b0efee87de06ce7ad7a2c4083bad2e8aa3123788 (patch) | |
tree | ee75a7e9dc3ac5499732ae8b1986d3121abbf7d3 | |
parent | 48cc34bfa7bb3c766c2947adb51d364633557e8a (diff) | |
download | upstream-b0efee87de06ce7ad7a2c4083bad2e8aa3123788.tar.gz upstream-b0efee87de06ce7ad7a2c4083bad2e8aa3123788.tar.bz2 upstream-b0efee87de06ce7ad7a2c4083bad2e8aa3123788.zip |
[package] base-files: change /dev permissions to 0755 when hotplug2 is used (#6039)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23908 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/base-files/files/lib/preinit/20_device_fs_mount | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/preinit/20_device_fs_mount b/package/base-files/files/lib/preinit/20_device_fs_mount index 283aa0a9d1..832b1cf399 100644 --- a/package/base-files/files/lib/preinit/20_device_fs_mount +++ b/package/base-files/files/lib/preinit/20_device_fs_mount @@ -14,7 +14,7 @@ do_mount_devfs() { } do_mount_hotplug() { - mount -t tmpfs tmpfs /dev -o size=512K + mount -t tmpfs tmpfs /dev -o mode=0755,size=512K } do_mount_udev() { |