b45c1aca73
This switch has 27 fiber ports, 4x25G, 20x10G , and 3x100G ports ports. CPU: Intel ® Atom™ Processor C3508,1.6GHz BMC: None MAC: Broadcom BCM88470 (Qumran AX). MISC: Support IEEE1588v2, hot-swappable PSU, hot-swappable fan tray. But notice here, BCM88470 is not supported for SAI now. So the syncd container is not running so far. 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='as7315_27xb',
|
|
version='1.0',
|
|
description='Module to initialize Accton AS7315-27XB platforms',
|
|
|
|
packages=['as7315_27xb'],
|
|
package_dir={'as7315_27xb': 'as7315-27xb/classes'},
|
|
)
|
|
|