1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-15 11:46:28 +03:00
openwrt-xburst/package/fuse24/files/fuse24.init

11 lines
230 B
Plaintext
Raw Normal View History

#!/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
}