2 # Copyright (C) 2006 OpenWrt.org
4 # bypass the normal hotplug path for firmware loading
5 # would otherwise cause problems with drivers like bcm43xx
6 [ "$1" = "firmware" -a "$ACTION" = "add" ] && {
7 [ -f "/lib/firmware/$FIRMWARE" ] && {
8 echo 1 > "/sys$DEVPATH/loading"
9 cp "/lib/firmware/$FIRMWARE" "/sys$DEVPATH/data"
10 echo 0 > "/sys$DEVPATH/loading"
17 PATH
=/bin
:/sbin
:/usr
/bin
:/usr
/sbin
20 export PATH LOGNAME USER
22 [ \
! -z "$1" -a -d /etc
/hotplug.d
/$1 ] && {
23 for script in $
(ls /etc
/hotplug.d
/$1/* 2>&-); do (
24 [ -f $script ] && .
$script
This page took 0.044571 seconds and 5 git commands to generate.