blob: 076a5fe8df8722852630d4a07a51206a52366e55 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if [ -a /sys/devices/platform/omap/ti81xx-usbss/musb-hdrc.0/gadget/lun0/file ]
then
x=$(cat /sys/devices/platform/omap/ti81xx-usbss/musb-hdrc.0/gadget/lun0/file)
if [ -z "$x" ]
then
/bin/systemctl stop storage-gadget-init.service
/bin/systemctl start network-gadget-init.service
fi
fi
|