Skip to content
Closed
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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,24 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [2.6.1](https://github.com/rdkcentral/utopia/compare/2.6.0...2.6.1)

- RDKB-65464 : mesh_status.sh script should run evey 2 hours [`#338`](https://github.com/rdkcentral/utopia/pull/338)
- RDKB-64520: Add support for pseudo bridge mode [`#339`](https://github.com/rdkcentral/utopia/pull/339)
- RDKB-64184, RDKB-65468 : Update default memory limit for Network Intelligence (NI) to 25MB [`#342`](https://github.com/rdkcentral/utopia/pull/342)
- RDKB-65498: System Configuration [Sysevent settings]for OneStack Commercial mode [`#340`](https://github.com/rdkcentral/utopia/pull/340)
- RDKB-65279 : Default OCSP stapling parameters [`#331`](https://github.com/rdkcentral/utopia/pull/331)
- CBR2-2262 : set primary_lan_l3net sysevent [`#302`](https://github.com/rdkcentral/utopia/pull/302)
- Merge tag '2.6.0' into develop [`33bba78`](https://github.com/rdkcentral/utopia/commit/33bba783da73db30b2212f26e93e91693d5a8aba)

#### [2.6.0](https://github.com/rdkcentral/utopia/compare/2.5.1...2.6.0)

> 3 June 2026

- XER10-2920 To bring the apply_system_defaults_psm in xer10-sky-uk [`#329`](https://github.com/rdkcentral/utopia/pull/329)
- RDKB-64184, RDKB-64546 : Add system defaults for RFCs in CUJO 26.1 release [`#328`](https://github.com/rdkcentral/utopia/pull/328)
- RDKCOM-5582: RDKBDEV-3436, RDKBACCL-867 brlan0 not getting ip when switched from bridge mode to… [`#95`](https://github.com/rdkcentral/utopia/pull/95)
- Add changelog for release 2.6.0 [`1fb4cb2`](https://github.com/rdkcentral/utopia/commit/1fb4cb2576af857dccf1b7f06623ebdd85a12d33)
- Merge tag '2.5.1' into develop [`12aedbf`](https://github.com/rdkcentral/utopia/commit/12aedbfac1ef995ea0ef3a9b9391abeab5d604af)

#### [2.5.1](https://github.com/rdkcentral/utopia/compare/2.5.0...2.5.1)
Expand Down
4 changes: 2 additions & 2 deletions source/scripts/init/service.d/service_crond.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ service_start ()
if [ "$MOCA_SUPPORTED" != "false" ]; then
echo "1 */12 * * * /usr/ccsp/pam/moca_status.sh" >> $CRONTAB_FILE
fi
#RDKB-17984: Runs every 12 hours and prints mesh status
#RDKB-17984: Runs every 2 hours and prints mesh status
if [ "$BOX_TYPE" != "XB3" ]; then
echo "1 */12 * * * /usr/ccsp/wifi/mesh_status.sh" >> $CRONTAB_FILE
echo "1 */2 * * * /usr/ccsp/wifi/mesh_status.sh" >> $CRONTAB_FILE
fi

if [ "$BOX_TYPE" == "XB3" ]; then
Expand Down
Loading