* [mlnx|ffb] Add support for mellanox fast-fast boot Signed-off-by: Stepan Blyschak <stepanb@mellanox.com> * [mlnx|ffb]: Add support of "config end" event for mlnx fast-fast boot Signed-off-by: Volodymyr Samotiy <volodymyrs@mellanox.com> * [Mellanox|FFB]: Fix review comments * Change naming convention from "fast-fast" to "fastfast" Signed-off-by: Volodymyr Samotiy <volodymyrs@mellanox.com>
16 lines
375 B
Python
Executable File
16 lines
375 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',
|
|
'scripts/ffb',
|
|
]
|
|
)
|