add missing fuse24 init script
SVN-Revision: 16954
This commit is contained in:
parent
b483359d38
commit
47dd6b0789
1 changed files with 10 additions and 0 deletions
10
package/fuse24/files/fuse24.init
Normal file
10
package/fuse24/files/fuse24.init
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2009 OpenWrt.org
|
||||
START=15
|
||||
|
||||
start() {
|
||||
if ls /lib/modules/$(uname -r)/fuse.* > /dev/null 2>&1; then
|
||||
[ ! -d /dev/misc ] && umask 022 && mkdir /dev/misc;
|
||||
ln -s /dev/fuse /dev/misc/;
|
||||
fi
|
||||
}
|
Loading…
Reference in a new issue