Skip to content

Commit

Permalink
CMFSUPPORT-1790 : Open sourcing IPOE health check component. (#16)
Browse files Browse the repository at this point in the history
* CMFSUPPORT-1790 : Open sourcing IPOE health check component.

Reason for change:
Initial version of IPOEHealthCheck component movement from gerrit to github.

Test Procedure:
1. Build should pass

Risks: Medium

Signed-off-by: Lakshminarayanan <[email protected]>

* Updated latest release version of IPOE health check v1.0.0.

Signed-off-by: Lakshminarayanan <[email protected]>

* Updated WANManager v2.3.0 and GPONManager v1.1.0 on the respective receipes.

Signed-off-by: Lakshminarayanan <[email protected]>

---------

Signed-off-by: Lakshminarayanan <[email protected]>
  • Loading branch information
LakshminarayananShenbagaraj authored Jul 4, 2024
1 parent aab5f1d commit 41665fc
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
2 changes: 1 addition & 1 deletion recipes-ccsp/ccsp/rdk-wanmanager.bb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ DEPENDS_append = " ${@bb.utils.contains('DISTRO_FEATURES', 'rdkb_wan_manager', '

require recipes-ccsp/ccsp/ccsp_common.inc

GIT_TAG = "v2.2.0"
GIT_TAG = "v2.3.0"
SRC_URI := "git://github.com/rdkcentral/RdkWanManager.git;branch=main;protocol=https;name=WanManager;tag=${GIT_TAG}"
PV = "${GIT_TAG}+git${SRCPV}"

Expand Down
2 changes: 1 addition & 1 deletion recipes-ccsp/ccsp/rdkgponmanager.bb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DEPENDS = "ccsp-common-library dbus rdk-logger utopia hal-platform json-hal-lib"

require recipes-ccsp/ccsp/ccsp_common.inc

GIT_TAG = "v1.0.0"
GIT_TAG = "v1.1.0"
SRC_URI = "git://github.com/rdkcentral/RdkGponManager.git;branch=main;protocol=https;name=GponManager;tag=${GIT_TAG}"
PV = "${GIT_TAG}+git${SRCPV}"
EXTRA_OECONF_append = " --with-ccsp-platform=bcm --with-ccsp-arch=arm "
Expand Down
28 changes: 28 additions & 0 deletions recipes-support/ipoe-health-check/ipoe-health-check.bb
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
SUMMARY = "IPoE Health Check component"

LICENSE = "Apache-2.0"

LIC_FILES_CHKSUM = "file://LICENSE;md5=175792518e4ac015ab6696d16c4f607e"

DEPENDS = "rdk-logger rdk-wanmanager"

GIT_TAG = "v1.0.0"
SRC_URI := "git://github.com/rdkcentral/IPOEHealthCheck.git;branch=main;protocol=https;name=IPoEHealthCheck;tag=${GIT_TAG}"
PV = "${GIT_TAG}+git${SRCPV}"

S = "${WORKDIR}/git"

inherit autotools pkgconfig

CFLAGS_append = " \
-I${STAGING_INCDIR} \
-I${STAGING_INCDIR}/ccsp \
-I ${STAGING_INCDIR}/syscfg \
-I ${STAGING_INCDIR}/sysevent \
"

CFLAGS_append += " ${@bb.utils.contains('DISTRO_FEATURES', 'feature_mapt', '-DFEATURE_MAPT', '', d)}"

FILES_${PN} = " \
${bindir}/ipoe_health_check \
"

0 comments on commit 41665fc

Please sign in to comment.