From 8ae2ff6e1ef63b14c3f7a82c98085ca6c55cc8f9 Mon Sep 17 00:00:00 2001 From: sowmiyachelliah <162420027+sowmiyachelliah@users.noreply.github.com> Date: Mon, 9 Feb 2026 22:45:16 +0530 Subject: [PATCH 1/2] RDKB-62977 RDKB-63450: Native build for Coverity - Updating README.md (#213) Reason for change: Enable coverity scan using native build. Test Procedure: All the checks should pass in github Risks: Low Priority: P1 Signed-off-by: [sowmiya_chelliah@comcast.com](mailto:sowmiya_chelliah@comcast.com) --- cov_docker_script/README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 cov_docker_script/README.md diff --git a/cov_docker_script/README.md b/cov_docker_script/README.md new file mode 100644 index 00000000..e4e293fd --- /dev/null +++ b/cov_docker_script/README.md @@ -0,0 +1,3 @@ +# 🔧 Coverity Native Build System for RDK-B Components + +The documentation and source for the RDK-B native build system has been centralized in [rdkcentral/build_tools_workflows](https://github.com/rdkcentral/build_tools_workflows/blob/develop/cov_docker_script/README.md) \ No newline at end of file From f10aedd108ff3ebfbef6b52e8ef2b24ea77c68bd Mon Sep 17 00:00:00 2001 From: bunnam988 <107185904+bunnam988@users.noreply.github.com> Date: Wed, 11 Feb 2026 11:32:24 +0530 Subject: [PATCH 2/2] RDKB-60656 : Available memory check for firmware downloads (#182) RDKB-60656 : Available memory check for firmware downloads Reason for change: Before firmware download, we need to check if the device have enough memory Test Procedure: 1. while firmware download, available memory check logs should be seen. 2. If available memory < required memory, firmware download should not start. Risks: medium Priority: P1 **Gerrit meta-layer changes:** https://gerrit.teamccp.com/#/q/topic:RDKB-60656+(status:open+OR+status:merged) **List all dependent GitHub PRs:** https://github.com/rdkcentral/xconf-client/pull/13 https://github.com/rdkcentral/provisioning-and-management/pull/178 https://github.com/rdkcentral/cable-modem-agent/pull/23 https://github.com/rdkcentral/miscellaneous-broadband/pull/37 https://github.com/rdk-gdcs/apparmor-profiles/pull/49 --- source/scripts/init/defaults/system_defaults_arm | 6 ++++++ source/scripts/init/defaults/system_defaults_bci | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/source/scripts/init/defaults/system_defaults_arm b/source/scripts/init/defaults/system_defaults_arm index b5cd879d..4b58b93e 100755 --- a/source/scripts/init/defaults/system_defaults_arm +++ b/source/scripts/init/defaults/system_defaults_arm @@ -1491,3 +1491,9 @@ $RemoteDebuggerIssueType=NULL #Wifi Personalization Support Default value $WiFiPersonalizationSupport=true +#FwDwld_AvlMem_RsrvThreshold Default value +$FwDwld_AvlMem_RsrvThreshold=20 + +#FwDwld_ImageProcMemPercent Default value +$FwDwld_ImageProcMemPercent=0 + diff --git a/source/scripts/init/defaults/system_defaults_bci b/source/scripts/init/defaults/system_defaults_bci index d7a75d7e..cb485d56 100755 --- a/source/scripts/init/defaults/system_defaults_bci +++ b/source/scripts/init/defaults/system_defaults_bci @@ -1340,3 +1340,9 @@ $TrackRemotePortUsage=NULL #Wifi Personalization Support Default value $WiFiPersonalizationSupport=true + +#FwDwld_AvlMem_RsrvThreshold Default value +$FwDwld_AvlMem_RsrvThreshold=20 + +#FwDwld_ImageProcMemPercent Default value +$FwDwld_ImageProcMemPercent=0