mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 22:25:20 +02:00
11 lines
230 B
Plaintext
11 lines
230 B
Plaintext
|
#!/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
|
||
|
}
|