24ae0a9606
### Why I did it We're not adding any patch on top of hiredis, and there's no apparent reason to build this. Remove the build step here, and just install the package from the Debian repos. ##### Work item tracking - Microsoft ADO **(number only)**: 24381590 #### How to verify it Build the SONiC image, and load it. Verify that services come up.
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# host-sflow package
|
|
|
|
HSFLOWD_VERSION = 2.0.45
|
|
HSFLOWD_SUBVERSION = 1
|
|
|
|
export ENABLE_SFLOW_DROPMON
|
|
export HSFLOWD_VERSION HSFLOWD_SUBVERSION
|
|
|
|
HSFLOWD = hsflowd_$(HSFLOWD_VERSION)-$(HSFLOWD_SUBVERSION)_$(CONFIGURED_ARCH).deb
|
|
$(HSFLOWD)_SRC_PATH = $(SRC_PATH)/sflow/hsflowd
|
|
|
|
SONIC_MAKE_DEBS += $(HSFLOWD)
|
|
|
|
HSFLOWD_DBG = hsflowd-dbg_$(HSFLOWD_VERSION)-$(HSFLOWD_SUBVERSION)_$(CONFIGURED_ARCH).deb
|
|
$(HSFLOWD_DBG)_DEPENDS += $(HSFLOWD)
|
|
$(HSFLOWD_DBG)_RDEPENDS += $(HSFLOWD)
|
|
$(eval $(call add_derived_package,$(HSFLOWD),$(HSFLOWD_DBG)))
|
|
|
|
export HSFLOWD HSFLOWD_DBG
|
|
|
|
# sflowtool package
|
|
|
|
SFLOWTOOL_VERSION = 5.04
|
|
export SFLOWTOOL_VERSION
|
|
|
|
SFLOWTOOL = sflowtool_$(SFLOWTOOL_VERSION)_$(CONFIGURED_ARCH).deb
|
|
$(SFLOWTOOL)_SRC_PATH = $(SRC_PATH)/sflow/sflowtool
|
|
|
|
SONIC_MAKE_DEBS += $(SFLOWTOOL)
|
|
export SFLOWTOOL
|
|
|
|
# psample package
|
|
|
|
PSAMPLE_VERSION = 1.1
|
|
PSAMPLE_SUBVERSION = 1
|
|
export PSAMPLE_VERSION PSAMPLE_SUBVERSION
|
|
|
|
PSAMPLE = psample_$(PSAMPLE_VERSION)-$(PSAMPLE_SUBVERSION)_$(CONFIGURED_ARCH).deb
|
|
$(PSAMPLE)_SRC_PATH = $(SRC_PATH)/sflow/psample
|
|
|
|
SONIC_MAKE_DEBS += $(PSAMPLE)
|
|
export PSAMPLE
|
|
|
|
# The .c, .cpp, .h & .hpp files under src/{$DBG_SRC_ARCHIVE list}
|
|
# are archived into debug one image to facilitate debugging.
|
|
#
|
|
DBG_SRC_ARCHIVE += sflow
|