Welcome to mirror list, hosted at ThFree Co, Russian Federation.

p7020_usb « preinit.d « etc « rootfs « hakchi « mod_hakchi « mods - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8c3d82bae4abeb29d2a2f3aac39cc27a68718a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if [ "$cfg_usb_host" != "y" ]; then
  switchToUsbDevice
else
  switchToUsbHost
 
  # the usb driver needs about 3 seconds to initialize
  sleep 3
  
  if [ -z "$(lsusb | grep -v "1d6b:0001")" ]; then
    switchToUsbDevice
  else
    checkUsbStorage
  fi

fi