Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions utils/common_device_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,11 @@ size_t GetBuildType( char *pBuildType, size_t szBufSize, BUILDTYPE *peBuildTypeO
pOut = "prod";
eBuildType = ePROD;
}
else if( strstr( pTmp, "signedlab" ) != NULL )
{
pOut = "signedlab";
eBuildType = eSIGNEDLAB;
}
Comment on lines +320 to +324
else if( strstr( pTmp, "qa" ) != NULL )
{
pOut = "qa";
Expand Down
3 changes: 2 additions & 1 deletion utils/rdk_fwdl_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ typedef enum {
eDEV,
eVBN,
ePROD,
eQA
eQA,
eSIGNEDLAB
} BUILDTYPE;

#ifndef GETRDMMANIFESTVERSION_IN_SCRIPT
Expand Down
Loading