* [mellanox|ffb] use system level warm reboot for Mellanox fastfast boot Signed-off-by: Stepan Blyschak <stepanb@mellanox.com> * [mellanox|ffb] add comments for mellanox start/stop drivers section Signed-off-by: Stepan Blyschak <stepanb@mellanox.com>
15 lines
352 B
Python
Executable File
15 lines
352 B
Python
Executable File
from setuptools import setup
|
|
|
|
setup(
|
|
name='mlnx-issu',
|
|
version='1.0',
|
|
description='MLNX ISSU tool for SONiC on mellanox platform',
|
|
author='SONiC Community',
|
|
url='https://github.com/Azure/sonic-buildimage/',
|
|
maintainer='Stepan Blyschak',
|
|
maintainer_email='stepanb@mellanox.com',
|
|
scripts=[
|
|
'scripts/issu',
|
|
]
|
|
)
|