Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

RDK-56229: Add IUI version as mandatory field #20

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
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
2 changes: 2 additions & 0 deletions source/t2parser/t2parserxconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ T2ERROR processConfigurationXConf(char* configData, ProfileXConf **localProfile)
addParameter(profile, "PartnerId", TR181_DEVICE_PARTNER_ID, NULL, -1);
addParameter(profile, "Version", TR181_DEVICE_FW_VERSION, NULL, -1);
addParameter(profile, "AccountId", TR181_DEVICE_ACCOUNT_ID, NULL, -1);
addParameter(profile, "immui_ver_split", TR181_IUI_VERSION, NULL, -1);
}
free(paramValue);
paramValue = NULL;
Expand All @@ -229,6 +230,7 @@ T2ERROR processConfigurationXConf(char* configData, ProfileXConf **localProfile)
addParameter(profile, "camIpv6", TR181_DEVICE_WAN_IPv6, NULL, -1);
#else
addParameter(profile, "StbIp", TR181_DEVICE_WAN_IPv6, NULL, -1);
addParameter(profile, "immui_ver_split", TR181_IUI_VERSION, NULL, -1);
#endif
addParameter(profile, "PartnerId", TR181_DEVICE_PARTNER_ID, NULL, -1);
addParameter(profile, "Version", TR181_DEVICE_FW_VERSION, NULL, -1);
Expand Down
1 change: 1 addition & 0 deletions source/xconf-client/xconfclient.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
#define TR181_DEVICE_WAN_IPv6 "Device.DeviceInfo.X_COMCAST-COM_STB_IP"
#define TR181_DEVICE_CM_MAC "Device.DeviceInfo.X_COMCAST-COM_STB_MAC"
#define TR181_DEVICE_CM_IP "Device.DeviceInfo.X_COMCAST-COM_STB_IP"
#define TR181_IUI_VERSION "Device.DeviceInfo.X_RDKCENTRAL-COM.IUI.Version"

#endif // ENABLE_RDKB_SUPPORT

Expand Down