082c26a27d
1. remove container feature table 2. do not generate feature entry if the feature is not included in the image 3. rename ENABLE_* to INCLUDE_* for better clarity 4. rename feature status to feature state 5. [submodule]: update sonic-utilities * 9700e45 2020-08-03 | [show/config]: combine feature and container feature cli (#1015) (HEAD, origin/master, origin/HEAD) [lguohan] * c9d3550 2020-08-03 | [tests]: fix drops_group_test failure on second run (#1023) [lguohan] * dfaae69 2020-08-03 | [lldpshow]: Fix input device is not a TTY error (#1016) [Arun Saravanan Balachandran] * 216688e 2020-08-02 | [tests]: rename sonic-utilitie-tests to tests (#1022) [lguohan] Signed-off-by: Guohan Lu <lguohan@gmail.com>
29 lines
846 B
Makefile
29 lines
846 B
Makefile
#include $(PLATFORM_PATH)/sdk.mk
|
|
include $(PLATFORM_PATH)/sai.mk
|
|
include $(PLATFORM_PATH)/docker-syncd-mrvl.mk
|
|
include $(PLATFORM_PATH)/docker-syncd-mrvl-rpc.mk
|
|
include $(PLATFORM_PATH)/docker-saiserver-mrvl.mk
|
|
include $(PLATFORM_PATH)/libsaithrift-dev.mk
|
|
include $(PLATFORM_PATH)/docker-ptf-mrvl.mk
|
|
include $(PLATFORM_PATH)/one-image.mk
|
|
include $(PLATFORM_PATH)/linux-kernel-armhf.mk
|
|
include $(PLATFORM_PATH)/platform-et6448m.mk
|
|
|
|
INCLUDE_SYSTEM_TELEMETRY = ""
|
|
ENABLE_SYNCD_RPC = ""
|
|
|
|
SONIC_ALL += $(SONIC_ONE_IMAGE) \
|
|
$(DOCKER_FPM)
|
|
#$(DOCKER_SYNCD_MRVL_RPC)
|
|
|
|
# Inject mrvl sai into syncd
|
|
$(SYNCD)_DEPENDS += $(MRVL_SAI)
|
|
$(SYNCD)_UNINSTALLS += $(MRVL_SAI)
|
|
|
|
ifeq ($(ENABLE_SYNCD_RPC),y)
|
|
$(SYNCD)_DEPENDS += $(LIBSAITHRIFT_DEV)
|
|
endif
|
|
|
|
# Runtime dependency on mrvl sai is set only for syncd
|
|
$(SYNCD)_RDEPENDS += $(MRVL_SAI)
|