sonic-buildimage/device/fs/arm64-fs_s5800_48t4s-r0/platform_reboot

14 lines
356 B
Plaintext
Raw Normal View History

#!/usr/bin/python
def main():
# reboot the system
with open('/sys/class/gpio/export', 'w') as file:
file.write('502\n')
with open('/sys/class/gpio/gpio502/direction', 'w') as file:
file.write('out\n')
with open('/sys/class/gpio/gpio502/value', 'w') as file:
file.write('1\n')
if __name__ == "__main__":
main()