48c089b9bb
Make Python3-swsscommon available in image. ``` admin@str-s6000-acs-13:~$ sudo apt-cache search swss libswsscommon - This package contains Switch State Service common library. python-swsscommon - This package contains Switch State Service common Python2 library. python3-swsscommon- This package contains Switch State Service common Python3 library. admin@str-s6000-acs-13:~$ ```
32 lines
1.2 KiB
Makefile
32 lines
1.2 KiB
Makefile
# docker image for p4 sonic docker image
|
|
|
|
DOCKER_SONIC_P4 = docker-sonic-p4.gz
|
|
$(DOCKER_SONIC_P4)_PATH = $(PLATFORM_PATH)/docker-sonic-p4
|
|
$(DOCKER_SONIC_P4)_DEPENDS += $(SWSS) \
|
|
$(SYNCD) \
|
|
$(P4_SWITCH) \
|
|
$(REDIS_TOOLS) \
|
|
$(REDIS_SERVER) \
|
|
$(PYTHON_SWSSCOMMON) \
|
|
$(PYTHON3_SWSSCOMMON) \
|
|
$(LIBTEAMDCTL) \
|
|
$(LIBTEAM_UTILS) \
|
|
$(SONIC_DEVICE_DATA) \
|
|
$(SONIC_UTILITIES_PY2) \
|
|
$(IPROUTE2)
|
|
|
|
# ifeq ($(ROUTING_STACK), quagga)
|
|
$(DOCKER_SONIC_P4)_DEPENDS += $(QUAGGA)
|
|
# else ifeq ($(ROUTING_STACK), frr)
|
|
# $(DOCKER_SONIC_P4)_DEPENDS += $(FRR)
|
|
# else
|
|
# $(DOCKER_SONIC_P4)_DEPENDS += $(GOBGP)
|
|
# endif
|
|
|
|
$(DOCKER_SONIC_P4)_FILES += $(CONFIGDB_LOAD_SCRIPT) \
|
|
$(ARP_UPDATE_SCRIPT) \
|
|
$(ARP_UPDATE_VARS_TEMPLATE)
|
|
|
|
$(DOCKER_SONIC_P4)_LOAD_DOCKERS += $(DOCKER_CONFIG_ENGINE)
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_SONIC_P4)
|