Skip to content

RDKB-64798: Default xconf URL using AutoExcluded.XconfUrl dmcli param… - #29

Closed
MonekaLakshmi wants to merge 2 commits into
developfrom
topic/RDKB-64798
Closed

RDKB-64798: Default xconf URL using AutoExcluded.XconfUrl dmcli param…#29
MonekaLakshmi wants to merge 2 commits into
developfrom
topic/RDKB-64798

Conversation

@MonekaLakshmi

Copy link
Copy Markdown
Contributor

… value

Reason for change: Testing purpose

… value

Reason for change: Testing purpose

Signed-off-by: plaksh175_comcast <PiramanayagamMoneka_Lakshmi@comcast.com>
Copilot AI review requested due to automatic review settings July 1, 2026 06:38
@MonekaLakshmi
MonekaLakshmi requested review from a team as code owners July 1, 2026 06:38

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Pull request overview

Updates the XB6 firmware download script’s URL-override behavior to avoid forcing CDL_SERVER_OVERRIDE when Direct CDN flow is enabled, primarily for testing scenarios.

Changes:

  • Adds conditional logic to set CDL_SERVER_OVERRIDE only when direct_CDN is disabled for the AutoExcluded URL override path.
  • Adds log lines to record whether CDL_SERVER_OVERRIDE was set based on Direct CDN state.

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

Comment thread scripts/xb6_firmwareDwnld.sh Outdated
Comment on lines +1331 to +1336
if [ "$direct_CDN" = "false" ]; then
CDL_SERVER_OVERRIDE=1
echo "XCONF SCRIPT : Direct CDN NOT ENABLED. CDL_SERVER_OVERRIDE is set URL=$url" >> $XCONF_LOG_FILE
else
echo "XCONF SCRIPT : Direct CDN enabled. Not setting CDL_SERVER_OVERRIDE for AutoExcludedURL URL=$url" >> $XCONF_LOG_FILE
fi
Comment thread scripts/xb6_firmwareDwnld.sh Outdated
Comment on lines +1326 to +1331
@@ -1327,7 +1327,13 @@ if [ "$type" != "PROD" ] && [ "$type" != "prod" ]; then
if [ "$url_override" ] ; then
url=$url_override
xconf_url=$url
CDL_SERVER_OVERRIDE=1
# Set CDL_SERVER_OVERRIDE only for non-direct-CDN flow
if [ "$direct_CDN" = "false" ]; then
Copilot AI review requested due to automatic review settings July 14, 2026 09:03

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Pull request overview

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

Comment on lines 1326 to 1330
url_override=`syscfg get AutoExcludedURL`
if [ "$url_override" ] ; then
# Set CDL_SERVER_OVERRIDE only for non-direct-CDN flow
if [ "$url_override" ] && [ "$direct_CDN" = "false" ]; then
url=$url_override
xconf_url=$url
Comment on lines 1326 to +1328
url_override=`syscfg get AutoExcludedURL`
if [ "$url_override" ] ; then
# Set CDL_SERVER_OVERRIDE only for non-direct-CDN flow
if [ "$url_override" ] && [ "$direct_CDN" = "false" ]; then
@MonekaLakshmi
MonekaLakshmi deleted the topic/RDKB-64798 branch July 22, 2026 09:25
@github-actions github-actions Bot locked and limited conversation to collaborators Jul 22, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants