0bca6b8468
2) Install debug tools in every debug docker image 3) Install available debug symbols in debug docker image 4) Provide additional host/docker mapping for host dirs /src & /debug 4.1) The one-image will have source code under /src 4.2) /debug is mapped as rw. User can put his core file there and use this dir to collect debug session logs too. 5) Build debug image using debug dockers 6) Source code is archived into /src of debug image 7) The welcome banner is extended to display these additional facilities in debug image.
14 lines
306 B
Makefile
14 lines
306 B
Makefile
# docker image for syncd
|
|
|
|
|
|
DOCKER_SYNCD_PLATFORM_CODE = bfn
|
|
include $(PLATFORM_PATH)/../template/docker-syncd-base.mk
|
|
|
|
$(DOCKER_SYNCD_BASE)_DEPENDS += $(SYNCD)
|
|
|
|
$(DOCKER_SYNCD_BASE)_DBG_DEPENDS += $(SYNCD_DBG) \
|
|
$(LIBSWSSCOMMON_DBG) \
|
|
$(LIBSAIMETADATA_DBG) \
|
|
$(LIBSAIREDIS_DBG)
|
|
|