sonic-buildimage/platform/broadcom/sonic-platform-modules-tencent/common/script/ruijiecommon.py
tianshangfei b65e06f998
two platforms supporting S3IP SYSFS (TCS8400, TCS9400) (#12386)
Why I did it
Add two platform that support s3IP framework

How I did it
Add two platforms supporting S3IP SYSFS (TCS8400, TCS9400)

How to verify it
Manual test
2022-12-18 16:16:53 +08:00

44 lines
973 B
Python
Executable File

#!/usr/bin/python3
# -------------------------------------------------------------------------------
# Author: sonic_rd@ruijie.com.cn
#
# Created: 02/07/2018
# Copyright: 2001-2022 Ruijie Network. All rights reserved.
# -------------------------------------------------------------------------------
__all__ = [
"GLOBALCONFIG",
"STARTMODULE",
"MAC_AVS_PARAM",
"MAC_DEFAULT_PARAM",
"DEV_MONITOR_PARAM",
"MANUINFO_CONF",
"AVS_VOUT_MODE_PARAM",
"PMON_SYSLOG_STATUS",
"OPTOE",
"BLACKLIST_DRIVERS",
"INIT_PARAM_PRE",
"INIT_COMMAND_PRE",
"INIT_PARAM",
"INIT_COMMAND",
"DRIVERLISTS",
"DEVICE",
]
GLOBALCONFIG = {}
STARTMODULE = {}
MAC_AVS_PARAM = {}
MAC_DEFAULT_PARAM = {}
DEV_MONITOR_PARAM = {}
MANUINFO_CONF = {}
AVS_VOUT_MODE_PARAM = {}
PMON_SYSLOG_STATUS = {}
OPTOE = []
BLACKLIST_DRIVERS = []
INIT_PARAM_PRE = []
INIT_COMMAND_PRE = []
INIT_PARAM = []
INIT_COMMAND = []
DRIVERLISTS = []
DEVICE = []