7f76d3bf74
* [platform] Add 6712 dpkg on building. Signed-off-by: roy_lee <roy_lee@accton.com> * [platform] remove scache_filename for it failed the bcm checker. Signed-off-by: roy_lee <roy_lee@accton.com> * [plaform] add platform/device as6712-32x. Signed-off-by: roy_lee <roy_lee@accton.com> * [platform] fix error on private data reference at cpld.c. Signed-off-by: roy_lee <roy_lee@accton.com>
17 lines
287 B
Python
17 lines
287 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='as6712_32x',
|
|
version='1.0',
|
|
description='Module to initialize Accton AS6712-32X platforms',
|
|
|
|
packages=['as6712_32x'],
|
|
package_dir={'as6712_32x': 'as6712-32x/classes'},
|
|
)
|
|
|