10 lines
117 B
Bash
Executable File
10 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd /sys/devices/platform/soc/*.rtc
|
|
echo 1 > aicupg
|
|
|
|
echo Will reboot after 3 seconds ...
|
|
sleep 3
|
|
reboot
|
|
|