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

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