be4cf09b5d
1. support new board E530-48s4x E530-24x2q 2. optimize platform driver for Centec TsingMa board Co-authored-by: shi lei <shil@centecnetworks.com>
13 lines
249 B
Python
Executable File
13 lines
249 B
Python
Executable File
#!/usr/bin/python
|
|
import os
|
|
|
|
def main():
|
|
# reboot the system
|
|
os.system('modprobe i2c-dev')
|
|
os.system('i2cset -y 0 0x36 0x23 0x0')
|
|
os.system('sleep 1')
|
|
os.system('i2cset -y 0 0x36 0x23 0x3')
|
|
|
|
if __name__ == "__main__":
|
|
main()
|