sonic-buildimage/device/cameo/x86_64-cameo_esc600_128q-r0/platform_reboot
Tony Titus fbd4e452c7
[201911] [Innovium] Add new platforms and config updates (#7545)
Update Innovium configs + Add new platforms supporting Innovium chips
2021-05-17 12:30:20 -07:00

19 lines
322 B
Bash
Executable File

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