47dd6b0789
SVN-Revision: 16954
10 lines
230 B
Bash
10 lines
230 B
Bash
#!/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
|
|
}
|