sonic-buildimage/platform/innovium/sonic-platform-modules-cameo/escc601-32q/utils/poweroff

19 lines
342 B
Plaintext
Raw Normal View History

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