6bffcb9e71
- Add INCLUDE_PINS to config to enable/disable container - Add Docker files and supporting resources - Add sonic-pins submodule and associated make files Submission containing materials of a third party: Copyright Google LLC; Licensed under Apache 2.0 #### Why I did it Adds P4RT container to SONiC for PINS The P4RT app is covered by this HLD: https://github.com/pins/SONiC/blob/master/doc/pins/p4rt_app_hld.md #### How I did it Followed the pattern and templates used for other SONiC applications #### How to verify it Build SONiC with INCLUDE_P4RT set to "y". Verify that the resulting build has a container called "p4rt" running. You can verify that the service is up by running the following command on the SONiC switch: ```bash sudo netstat -lpnt | grep p4rt ``` You should see the service listening on TCP port 9559. #### Which release branch to backport (provide reason below if selected) None #### Description for the changelog Build P4RT container for PINS
21 lines
736 B
Makefile
21 lines
736 B
Makefile
# SONiC P4RT package
|
|
|
|
SONIC_P4RT_VERSION = 0.0.1
|
|
|
|
SONIC_P4RT = sonic-p4rt_$(SONIC_P4RT_VERSION)_$(CONFIGURED_ARCH).deb
|
|
$(SONIC_P4RT)_SRC_PATH = $(SRC_PATH)/sonic-p4rt
|
|
$(SONIC_P4RT)_DEPENDS += $(LIBSWSSCOMMON_DEV)
|
|
$(SONIC_P4RT)_RDEPENDS += $(LIBSWSSCOMMON)
|
|
SONIC_MAKE_DEBS += $(SONIC_P4RT)
|
|
|
|
SONIC_P4RT_DBG = sonic-p4rt-dbgsym_$(SONIC_P4RT_VERSION)_$(CONFIGURED_ARCH).deb
|
|
$(SONIC_P4RT_DBG)_DEPENDS += $(SONIC_P4RT)
|
|
$(SONIC_P4RT_DBG)_RDEPENDS += $(SONIC_P4RT)
|
|
$(eval $(call add_derived_package,$(SONIC_P4RT),$(SONIC_P4RT_DBG)))
|
|
|
|
export SONIC_P4RT SONIC_P4RT_DBG SONIC_P4RT_VERSION
|
|
|
|
# The .c, .cpp, .h & .hpp files under src/{$DBG_SRC_ARCHIVE list}
|
|
# are archived into debug one image to facilitate debugging.
|
|
DBG_SRC_ARCHIVE += sonic-p4rt
|