Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion show/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ def platform():
if (version_info and version_info.get('asic_type') == 'mellanox'):
from . import mlnx
platform.add_command(mlnx.mlnx)

elif version_info and version_info.get("asic_type") == "cisco-8000":
from sonic_platform.cli import PLATFORM_CLIS
for command in PLATFORM_CLIS:
platform.add_command(command)

# 'summary' subcommand ("show platform summary")
@platform.command()
Expand Down