summaryrefslogtreecommitdiff
path: root/init.firstboot.sh
blob: 05a1b856818a70ef786724e582b72a5f4cac0748 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/vendor/bin/sh

# Init starts this script in the factory, to trigger shutdown after
# setupwizard has started, and USB is removed.

# wait for system to settle down after sys.boot_complete
sleep 5

# Wait for USB to be removed.
type=`cat /sys/class/power_supply/usb/typec_mode`
while [ "x$type" != "xNothing attached" ]; do
    echo Wait for \"$type\" == \"Nothing attached\"
    sleep 1;
    type=`cat /sys/class/power_supply/usb/typec_mode`
done;

# Shutdown
setprop sys.powerctl shutdown