c9c2826520
Linkmgrd monitors link status, mux status, and link state. Has the link becomes unhealthy, linkmgrd will trigger mux switchover on a standby ToR ensuring uninterrupted service to servers/blades. This PR is initial implementation of linkmgrd. Also, docker-mux container hold packages related to maintaining and managing mux cable. It currently runs linkmgrd binary that monitor and switches the mux if needed. This PR also introduces mux-container and starts linkmgrd as startup when build is configured with INCLUDE_MUX=y Edit: linkmgrd PR will follow. signed-off-by: Tamer Ahmed <tamer.ahmed@microsoft.com> Related work items: #2315, #3146150
12 lines
493 B
Plaintext
12 lines
493 B
Plaintext
|
|
SPATH := $($(SONIC_LINKMGRD)_SRC_PATH)
|
|
DEP_FILES := $(SONIC_COMMON_FILES_LIST) rules/linkmgrd.mk rules/linkmgrd.dep
|
|
DEP_FILES += $(SONIC_COMMON_BASE_FILES_LIST)
|
|
SMDEP_FILES := $(addprefix $(SPATH)/,$(shell cd $(SPATH) && git ls-files))
|
|
|
|
$(SONIC_LINKMGRD)_CACHE_MODE := GIT_CONTENT_SHA
|
|
$(SONIC_LINKMGRD)_DEP_FLAGS := $(SONIC_COMMON_FLAGS_LIST)
|
|
$(SONIC_LINKMGRD)_DEP_FILES := $(DEP_FILES)
|
|
$(SONIC_LINKMGRD)_SMDEP_FILES := $(SMDEP_FILES)
|
|
$(SONIC_LINKMGRD)_SMDEP_PATHS := $(SPATH)
|