Linux-2.6.12-rc2
[deliverable/linux.git] / Documentation / firmware_class / hotplug-script
1 #!/bin/sh
2
3 # Simple hotplug script sample:
4 #
5 # Both $DEVPATH and $FIRMWARE are already provided in the environment.
6
7 HOTPLUG_FW_DIR=/usr/lib/hotplug/firmware/
8
9 echo 1 > /sys/$DEVPATH/loading
10 cat $HOTPLUG_FW_DIR/$FIRMWARE > /sys/$DEVPATH/data
11 echo 0 > /sys/$DEVPATH/loading
12
13 # To cancel the load in case of error:
14 #
15 # echo -1 > /sys/$DEVPATH/loading
16 #
This page took 0.032313 seconds and 5 git commands to generate.