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: 6dc36af52bf2887b7d6c753a1d63995c55dfed1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if [ "$cfg_usb_host" != "y" ] || [ ! -z "$(lsusb | grep "1d6b:0002")" ]; then
  switchToUsbDevice
else
  switchToUsbHost
  # the usb driver needs some time to initialize
  sleep 1
  if [ -z "$(lsusb | grep -v "1d6b:")" ]; then
    switchToUsbDevice
  fi
fi

checkExtStorage