sonic-buildimage/device/cameo/x86_64-cameo_escc601_32q-r0/platform_reboot
shihjeff 940aaa0cbe
[201911] [Innovium] Update Cameo & Wistron Drivers (#7855)
Fix #8068

Update Innovium configs on Cameo and Wistron platforms
2021-07-21 09:09:36 -07:00

17 lines
277 B
Bash
Executable File

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