1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-05 00:27:37 +03:00
openwrt-xburst/package/base-files/files/etc/hotplug2-common.rules
acinonyx ae2e162a94 [package] base-files: Modernize hotplug2 rules (#11368)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32711 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-07-14 19:59:44 +00:00

44 lines
833 B
Plaintext

# uncomment me to log hotplug events
# DEVPATH is set {
# exec logger -s -t hotplug -p daemon.info "name=%DEVNAME%, path=%DEVPATH%"
# }
$include /etc/hotplug2-platform.rules
DEVNAME ~~ (^null$|^full$|^ptmx$|^zero$|^gpio|^hvc) {
makedev /dev/%DEVNAME% 0666
next-event
}
DEVNAME == mapper/control {
makedev /dev/%DEVNAME% 0600
next-event
}
ACTION == add, DEVPATH is set {
makedev /dev/%DEVNAME% 0644
}
ACTION == add, DEVPATH is set, DEVNAME ~~ ^tty {
chmod 0666 /dev/%DEVNAME%
}
ACTION == add, DEVPATH is set, DEVNAME ~~ ^ppp {
chmod 0600 /dev/%DEVNAME%
}
ACTION == remove, DEVPATH is set, MAJOR is set, MINOR is set {
remove /dev/%DEVNAME%
}
FIRMWARE is set, ACTION == add {
exec /sbin/hotplug-call firmware
load-firmware /lib/firmware
next-event
}
SUBSYSTEM == platform {
exec /sbin/hotplug-call %SUBSYSTEM%
}