-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CMFSUPPORT-1790 : Open sourcing IPOE health check component. (#16)
* 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
1 parent
aab5f1d
commit 41665fc
Showing
3 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 \ | ||
" |