d2f6fe7463
* Add support for Accton wedge100bf_32qs platform This pull request is based on wedge100bf_32x. The components on the mainboard are the same as wedge100bf_32x, except for tofino 32Q and COMe models, so it refers to wedge100bf_32x to create new model: wedge100bf_32qs. Signed-off-by: alvin_feng <alvin_feng@accton.com> * Fix lgtm alerts issues Signed-off-by: alvin_feng <alvin_feng@accton.com> * Modify some file permissions and use symlink to link wedge100bf-32qs/sonic_platform Signed-off-by: alvin_feng <alvin_feng@accton.com> * Remove switch-sai.conf file Signed-off-by: alvin_feng <alvin_feng@accton.com> * Modify platform.json to avoid platform TCs issues and changes for correct generating BUFFER_QUEUE values in DB. Signed-off-by: alvin_feng <alvin_feng@accton.com> * Fix error name in platform.json
15 lines
297 B
Python
Executable File
15 lines
297 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='wedge100bf-32qs',
|
|
version='1.0',
|
|
description='Module to initialize Accton wedge100bf-32qs platforms',
|
|
|
|
packages=['wedge100bf-32qs'],
|
|
package_dir={'wedge100bf-32qs': 'wedge100bf-32qs/classes'},
|
|
)
|