Skip to content
Merged
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
3 changes: 3 additions & 0 deletions source/scripts/init/defaults/system_defaults_arm
Original file line number Diff line number Diff line change
Expand Up @@ -1501,3 +1501,6 @@ $FwDwld_ImageProcMemPercent=0
$SelfHealCronEnable=true
#STAGE Default value
$StageEnabled=false

#RdkLogger Cron - RFC flag is enabled by default
$RdkbLogCronEnable=true
Comment on lines +1504 to +1506
Copy link

Copilot AI Feb 27, 2026

Choose a reason for hiding this comment

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

The new RdkbLogCronEnable syscfg flag is defined here with a default value of true, but it is never read or consumed anywhere in the codebase. The corresponding logic to read this flag via syscfg get RdkbLogCronEnable and conditionally register the rdklogger scripts as cron jobs in service_crond.sh is missing. Without a consumer, this default value definition has no effect and the behavior described in the PR (running rdklogger scripts as cron jobs when cron is enabled) will not be implemented.

Suggested change
#RdkLogger Cron - RFC flag is enabled by default
$RdkbLogCronEnable=true

Copilot uses AI. Check for mistakes.
3 changes: 3 additions & 0 deletions source/scripts/init/defaults/system_defaults_bci
Original file line number Diff line number Diff line change
Expand Up @@ -1351,3 +1351,6 @@ $FwDwld_ImageProcMemPercent=0
$SelfHealCronEnable=true
#STAGE Default value
$StageEnabled=false

#RdkLogger Cron - RFC flag is enabled by default
$RdkbLogCronEnable=true
Loading