708999ad61
These patches add support for the Broadcom XMC card (XLR/GTS). At this moment only Tomahawk switch (BCM956960K) is supported. Add device/broadcom/x86_64-bcm_xlr-r0 and platform/broadcom/sonic-platform-modules-brcm-xlr-gts files
13 lines
264 B
Python
Executable File
13 lines
264 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
import os
|
|
|
|
setup(
|
|
name='platform-xlr-gts',
|
|
version='%s' % os.environ.get('BRCM_XLR_GTS_PLATFORM_MODULE_VERSION', '1.0'),
|
|
description='Module to initialize Broadcom XLR/GTS platforms',
|
|
packages=[],
|
|
)
|
|
|