/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

  1. #!/bin/sh
  2. # Simple hotplug script sample:
  3. #
  4. # Both $DEVPATH and $FIRMWARE are already provided in the environment.
  5. HOTPLUG_FW_DIR=/usr/lib/hotplug/firmware/
  6. echo 1 > /sys/$DEVPATH/loading
  7. cat $HOTPLUG_FW_DIR/$FIRMWARE > /sys/$DEVPATH/data
  8. echo 0 > /sys/$DEVPATH/loading
  9. # To cancel the load in case of error:
  10. #
  11. # echo -1 > /sys/$DEVPATH/loading
  12. #