9c4d23427b
* Add driver and util for peripherals of as7312-54xs, most are copied from as7312-54s. Signed-off-by: roy_lee <roy_lee@accton.com> * Add default port speed and index from 1. Signed-off-by: roy_lee <roy_lee@accton.com> * Update i2c addr of psus. Add system logging for monitor. Signed-off-by: roy_lee <roy_lee@accton.com> * Correct syntax of module_dirs. Signed-off-by: roy_lee <roy_lee@accton.com> * Validate sfputil after tested. Signed-off-by: roy_lee <roy_lee@accton.com> * Correct the index of eeprom mapping. Signed-off-by: roy_lee <roy_lee@accton.com>
17 lines
292 B
Python
Executable File
17 lines
292 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='as7312_54xs',
|
|
version='1.0',
|
|
description='Module to initialize Accton AS7312-54XS platforms',
|
|
|
|
packages=['as7312_54xs'],
|
|
package_dir={'as7312_54xs': 'as7312-54xs/classes'},
|
|
)
|
|
|