diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-01-31 21:01:21 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2010-01-31 21:01:21 +0000 |
commit | 748006591704110d2b57fe222c963d08c91b73a2 (patch) | |
tree | 8167eafe906069087aeaad004004d80aa7963089 /package/base-files/files | |
parent | b8d99458ffe83a3c782e26e0cd07d26d41bfeefc (diff) | |
download | mtk-20170518-748006591704110d2b57fe222c963d08c91b73a2.zip mtk-20170518-748006591704110d2b57fe222c963d08c91b73a2.tar.gz mtk-20170518-748006591704110d2b57fe222c963d08c91b73a2.tar.bz2 |
/dev/null was used before it was created, so an empty file was created. This prevented the actual device node from being created. The attached patch fixes that, patch from cshore
SVN-Revision: 19472
Diffstat (limited to 'package/base-files/files')
-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 6b2a6e8..1f049da 100644 --- a/package/base-files/files/lib/preinit/20_device_fs_mount +++ b/package/base-files/files/lib/preinit/20_device_fs_mount @@ -15,7 +15,7 @@ do_mount_udev() { } choose_device_fs() { - if grep devfs /proc/filesystems > /dev/null; then + if grep devfs /proc/filesystems; then do_mount_devfs elif [ -x /sbin/hotplug2 ]; then do_mount_hotplug |