projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add firmware loading support to hotplug
[openwrt.git]
/
package
/
base-files
/
default
/
sbin
/
hotplug
diff --git
a/package/base-files/default/sbin/hotplug
b/package/base-files/default/sbin/hotplug
index
e53b2af
..
3500f75
100755
(executable)
--- a/
package/base-files/default/sbin/hotplug
+++ b/
package/base-files/default/sbin/hotplug
@@
-1,4
+1,13
@@
#!/bin/sh
#!/bin/sh
+[ "$1" = "firmware" -a "$ACTION" = "add" ] && {
+ [ -f "/lib/firmware/$FIRMWARE" ] && {
+ echo 1 > "/sys$DEVPATH/loading"
+ cp "/lib/firmware/$FIRMWARE" "/sys$DEVPATH/data"
+ echo 0 > "/sys$DEVPATH/loading"
+ }
+ exit 0
+}
+
[ -e /tmp/.failsafe ] && {
export FAILSAFE=true
} || {
[ -e /tmp/.failsafe ] && {
export FAILSAFE=true
} || {
This page took
0.021123 seconds
and
4
git commands to generate.