/Documentation/firmware_class/hotplug-script
https://bitbucket.org/evzijst/gittest · Shell · 16 lines · 4 code · 4 blank · 8 comment · 0 complexity · 9a8d02eddb916ea88145ffe2f13e3edd MD5 · raw file
- #!/bin/sh
- # Simple hotplug script sample:
- #
- # Both $DEVPATH and $FIRMWARE are already provided in the environment.
- HOTPLUG_FW_DIR=/usr/lib/hotplug/firmware/
- echo 1 > /sys/$DEVPATH/loading
- cat $HOTPLUG_FW_DIR/$FIRMWARE > /sys/$DEVPATH/data
- echo 0 > /sys/$DEVPATH/loading
- # To cancel the load in case of error:
- #
- # echo -1 > /sys/$DEVPATH/loading
- #