19 lines
352 B
Plaintext
19 lines
352 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
mr_reboot() {
|
||
|
|
||
|
sudo rmmod x86-64-cameo-esc601-32q
|
||
|
sudo i2cset -y 0 0x30 0xa4 0
|
||
|
|
||
|
}
|
||
|
|
||
|
if [ $# -eq 0 ] || [ $@ = "-r" ] || [ $@ = "--reboot" ] || [ $@ = "-h" ] || [ $@ = "-P" ] || [ $@ = "--poweroff" ]; then
|
||
|
sync;sync
|
||
|
mr_reboot
|
||
|
elif [ $@ = "-H" ] || [ $@ = "--halt" ]; then
|
||
|
sudo halt
|
||
|
else
|
||
|
echo "unsupported option"
|
||
|
fi
|
||
|
|