Skip to content

RDKEMW-21356:Add functionality supporting build type - signedlab - #100

Open
KTirumalaSrihari wants to merge 1 commit into
developfrom
topic/RDKEMW-21356
Open

RDKEMW-21356:Add functionality supporting build type - signedlab#100
KTirumalaSrihari wants to merge 1 commit into
developfrom
topic/RDKEMW-21356

Conversation

@KTirumalaSrihari

Copy link
Copy Markdown

No description provided.

Signed-off-by: skondu363 <Srihariraghava_konduritirumala@comcast.com>
Copilot AI review requested due to automatic review settings July 10, 2026 08:10
@KTirumalaSrihari
KTirumalaSrihari requested a review from a team as a code owner July 10, 2026 08:10

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR adds support for a new device build type, signedlab, by extending the BUILDTYPE enum and updating build-type detection logic in GetBuildType().

Changes:

  • Added eSIGNEDLAB to the BUILDTYPE enum.
  • Updated GetBuildType() to detect "signedlab" and return eSIGNEDLAB plus the normalized output string.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.

File Description
utils/rdk_fwdl_utils.h Extends the public BUILDTYPE enum with eSIGNEDLAB.
utils/common_device_api.c Adds "signedlab" detection branch in GetBuildType().

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread utils/rdk_fwdl_utils.h
Comment on lines 50 to 57
typedef enum {
eUNKNOWN,
eDEV,
eVBN,
ePROD,
eQA
eQA,
eSIGNEDLAB
} BUILDTYPE;
Comment thread utils/rdk_fwdl_utils.h
Comment on lines 50 to 57
typedef enum {
eUNKNOWN,
eDEV,
eVBN,
ePROD,
eQA
eQA,
eSIGNEDLAB
} BUILDTYPE;
Comment thread utils/common_device_api.c
pOut = "prod";
eBuildType = ePROD;
}
else if( strstr( pTmp, "signedlab" ) != NULL )
Comment thread utils/common_device_api.c
Comment on lines +320 to +324
else if( strstr( pTmp, "signedlab" ) != NULL )
{
pOut = "signedlab";
eBuildType = eSIGNEDLAB;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants