b65e06f998
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
44 lines
973 B
Python
Executable File
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 = []
|