sonic-buildimage/device/centec/arm64-centec_e530_48s4x-r0/platform_reboot

13 lines
325 B
Plaintext
Raw Normal View History

#!/usr/bin/python
import subprocess
def main():
# reboot the system
subprocess.call(['modprobe', 'i2c-dev'])
subprocess.call(['i2cset', '-y', '0', '0x36', '0x23', '0x0'])
subprocess.call(['sleep', '1'])
subprocess.call(['i2cset', '-y', '0', '0x36', '0x23', '0x3'])
if __name__ == "__main__":
main()