19 lines
347 B
Plaintext
19 lines
347 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
mr_reboot() {
|
||
|
|
||
|
sudo rmmod x86-64-cameo-esc600-128q
|
||
|
sudo i2cset -y 0 0x30 0xa1 0
|
||
|
|
||
|
}
|
||
|
|
||
|
if [ $# -eq 0 ] || [ $@ = "--halt" ] || [ $@ = "-f" ] || [ $@ = "--force" ]; then
|
||
|
sudo /sbin/halt
|
||
|
elif [ $@ = "-p" ] || [ $@ = "--reboot" ] || [ $@ = "--poweroff" ]; then
|
||
|
sync;sync
|
||
|
mr_reboot
|
||
|
else
|
||
|
echo "unsupported option"
|
||
|
fi
|
||
|
|