From 71726fef8ab6c8e88691bb75b0aa47da00a885ce Mon Sep 17 00:00:00 2001 From: rdkcmf Date: Tue, 24 Jun 2025 14:58:08 +0100 Subject: [PATCH 01/18] Deploy cla action --- .github/workflows/cla.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/cla.yml diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml new file mode 100644 index 0000000..0550479 --- /dev/null +++ b/.github/workflows/cla.yml @@ -0,0 +1,13 @@ +name: "CLA" +on: + issue_comment: + types: [created] + pull_request_target: + types: [opened,closed,synchronize] + +jobs: + CLA-Lite: + name: "Signature" + uses: rdkcentral/cmf-actions/.github/workflows/cla.yml@main + secrets: + PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ASSISTANT }} \ No newline at end of file From 72cb3876082113e96735c86d6d7770a6e73671f9 Mon Sep 17 00:00:00 2001 From: maniselva006c Date: Fri, 1 Aug 2025 10:04:10 -0400 Subject: [PATCH 02/18] RDKOSS-420: Support for REL_OSS_LAYER_ARCH and OSS_LAYER_ARCH (#43) Reason for change: Added support for consuming release OSS IPK packages using the architecture specified in REL_OSS_LAYER_ARCH, and for building OSS with an extended architecture defined by OSS_LAYER_ARCH. --- conf/machine/include/oss.inc | 32 ++++++-------------------------- 1 file changed, 6 insertions(+), 26 deletions(-) diff --git a/conf/machine/include/oss.inc b/conf/machine/include/oss.inc index 650a234..b4e24fe 100644 --- a/conf/machine/include/oss.inc +++ b/conf/machine/include/oss.inc @@ -4,32 +4,12 @@ RDK_ARTIFACTS_BASE_URL ?= "" RDK_ARTIFACTS_URL ?= "" OSS_LAYER_VERSION = "4.7.0" -def get_oss_machine(d): - arch = "" - default_tune = d.getVar('DEFAULTTUNE') - - # need to fix: Workaround to check for 64bit machine with multilib configuration - multilib_support = d.getVar('MULTILIBS') or "" - if multilib_support: - arch = "rdk-arm64" - elif "armv7athf-neon" in default_tune: - arch = "rdk-arm7a" - else: - arch = "rdk-arm7ve" - return arch - -def get_oss_arch(d): - arch = get_oss_machine(d) - arch += "-oss" - return arch - -OSS_MACHINE = "${@get_oss_machine(d)}" -OSS_LAYER_ARCH = "${@get_oss_arch(d)}" -PACKAGE_EXTRA_ARCHS:append = " ${OSS_LAYER_ARCH}" -OSS_LAYER_EXTENSION = "${OSS_LAYER_ARCH}" -OSS_IPK_SERVER_PATH = "${RDK_ARTIFACTS_BASE_URL}/rdk-oss-release/${OSS_LAYER_VERSION}/${OSS_MACHINE}/ipks" +REL_OSS_MACHINE = "${@get_oss_machine(d)}" +REL_OSS_LAYER_ARCH = "${@get_oss_arch(d)}" +PACKAGE_EXTRA_ARCHS:append = "${@ '' if '${REL_OSS_LAYER_ARCH}' == '${OSS_LAYER_ARCH}' else ' ${REL_OSS_LAYER_ARCH}'}" +REL_OSS_LAYER_EXTENSION = "${REL_OSS_LAYER_ARCH}" +REL_OSS_IPK_SERVER_PATH = "${RDK_ARTIFACTS_BASE_URL}/rdk-oss-release/${OSS_LAYER_VERSION}/${REL_OSS_MACHINE}/ipks" # To set the remote feeds IPK_FEED_URIS += " \ - ${OSS_LAYER_EXTENSION}##${OSS_IPK_SERVER_PATH} " - + ${REL_OSS_LAYER_EXTENSION}##${REL_OSS_IPK_SERVER_PATH} " From be3ffce9c50c6f4973d10bc42db78cf08da83961 Mon Sep 17 00:00:00 2001 From: mselva006c Date: Sun, 10 Aug 2025 02:17:02 +0000 Subject: [PATCH 03/18] RDKE-849: Update Release version Reason for change: Update release version for 4.8.0 Signed-off-by: mselva006c --- README.md | 487 ++++++++++++++++++----------------- conf/machine/include/oss.inc | 2 +- 2 files changed, 246 insertions(+), 243 deletions(-) diff --git a/README.md b/README.md index 098646e..65d5ab6 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,12 @@ RDKE OSS Layer Release Notes |---|----| |Classification|Public| |Document Version|Issue 1| -|Date|07th June 2025| +|Date|9th August 2025| |Author|RDKE Platform & Tools Team| | Components | Tag | |----------|--------| -| packagegroup-oss-layer | 4.7.0-r0| +| packagegroup-oss-layer | 4.8.0-r0| @@ -36,7 +36,7 @@ Unified OSS Layer - The components of the OSS (Open Source Software) layer, incl This release will provide a versioned `"meta-oss-reference-release"` that will be used by other stack layes to resolve build and runtime dependencies. -The 4.7.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: +The 4.8.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: 1. rdk-arm7a-oss: Default tuning is set to armv7athf-neon. 2. rdk-arm7ve-oss: Default tuning is set to armv7vethf-neon. 3. rdk-arm64-oss: 64-bit ARM architecture with a multilib configuration and default tuning set to armv7vethf-neon for compatibility with 32-bit systems. @@ -47,12 +47,12 @@ The IPK feed is automatically chosen based on the platform's default tuning conf ### OSS stack layer | Layer | Tag | |------|------| -|meta-rdk-auxiliary|1.3.0| -|meta-rdk-oss-reference|4.7.0| +|meta-rdk-auxiliary|1.5.0| +|meta-rdk-oss-reference|4.8.0| |meta-openembedded|rdk-4.0.0| -|poky|rdk-4.3.1| +|poky|rdk-4.4.1| |meta-python2|rdk-4.0.0| -|meta-rdk-oss-ext|1.3.0| +|meta-rdk-oss-ext|1.4.0| |meta-virtualization|rdk-4.0.0| |meta-clang|rdk-4.0.0| @@ -98,244 +98,247 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |36| dbus | (1.14.8-r0) | |37| dbus-glib | (0.112-r0) | |38| dibbler | (1.0.1+1.0.2RC1+gita7c6cf58a88a510cb00841351e75030ce78d36bf-r1) | -|39| dnsmasq | (2.90-r1) | +|39| dnsmasq | (2.90-r2) | |40| dosfstools | (2.11-r0) | |41| e2fsprogs | (1.46.5-r0) | |42| ebtables | (2.0.11-r4) | |43| elfutils | (0.186-r0) | -|44| evtest | (1.34-r0) | -|45| expat | (2.5.0-r0) | -|46| fcgi | (2.4.2-r0) | -|47| file | (5.41-r0) | -|48| findutils | (4.2.31-r0) | -|49| flac | (1.3.4-r0) | -|50| flex | (2.6.4-r0) | -|51| fontconfig | (2.13.1-r0) | -|52| freetype | (2.11.1-r1) | -|53| fribidi | (1.0.13-r0) | -|54| gawk | (3.1.5-r2) | -|55| gcc-runtime | (11.3.0-r0) | -|56| gcc-sanitizers | (11.3.0-r0) | -|57| gdbm | (1.8.3-r4) | -|58| gdk-pixbuf | (2.42.10-r0) | -|59| gettext | (0.16.1-r6) | -|60| gflags | (2.2.2-r0) | -|61| glib-2.0 | (2.72.3-r1) | -|62| glibc | (2.35-r1) | -|63| glibc-locale | (2.35-r0) | -|64| glibc-mtrace | (2.35-r0) | -|65| glib-networking | (2.72.2-r1) | -|66| gmp | (4.2.1-r0) | -|67| gnutls | (3.3.30-r1) | -|68| gobject-introspection | (1.72.0-r0) | -|69| googletest | (1.11.0+git0+9e71237221-r0) | -|70| graphite2 | (1.3.6-r0) | -|71| grpc | (1.46.7-r1) | -|72| gssdp | (1.4.0.1-r0) | -|73| gupnp | (0.20.10-r1) | -|74| harfbuzz | (4.0.1-r0) | -|75| heaptrack | (1.5.0-r0) | -|76| hiredis | (1.0.2-r0) | -|77| icu | (70.1-r0) | -|78| initscripts | (1.0-r155) | -|79| init-system-helpers | (1.62-r0) | -|80| iperf3 | (3.14-r0) | -|81| iptables | (1.8.7-r1) | -|82| iso-codes | (4.15.0-r0) | -|83| iw | (4.7-r0) | -|84| jansson | (2.13.1-r0) | -|85| jquery | (1.0.0-r3) | -|86| json-c | (0.15-r0) | -|87| jsoncpp | (1.8.4-r0) | -|88| jsonrpc | (1.3.0-r0) | -|89| kbd | (2.4.0-r0) | -|90| keyutils | (1.6.1-r0) | -|91| kmod | (29-r0) | -|92| lcms | (2.13.1-r0) | -|93| libaio | (0.3.112-r0) | -|94| libarchive | (3.6.1-r0) | -|95| libatomic-ops | (7.6.14-r0) | -|96| libbsd | (0.11.5-r0) | -|97| libcap | (2.66-r0) | -|98| libcap-ng | (0.8.2-r0) | -|99| libcgroup | (2.0.2-r0) | -|100| libcheck | (0.15.2-r0) | -|101| libcroco | (0.6.13-r0) | -|102| libdaemon | (0.14-r0) | -|103| libdash | (1.0.0+git0+f5b5d991af-r1) | -|104| libdwarf | (20210528-r0) | -|105| liberation-fonts | (2.1.5-r0) | -|106| libev | (4.33-r0) | -|107| libevdev | (1.12.1-r0) | -|108| libevent | (2.1.12-r0) | -|109| libexif | (0.6.24-r0) | -|110| libffi | (3.4.4-r0) | -|111| libgcc | (11.3.0-r0) | -|112| libgcrypt | (1.9.4-r0) | -|113| libgpg-error | (1.44-r0) | -|114| libgudev | (237-r0) | -|115| libical | (3.0.16-r1) | -|116| libidn2 | (2.3.2-r0) | -|117| libinput | (1.19.4-r0) | -|118| libjpeg | (62.3.0-r0) | -|119| libmanette | (0.2.6-r1) | -|120| libmd | (1.0.4-r0) | -|121| libmicrohttpd | (0.9.76-r0) | -|122| libmng | (2.0.3-r0) | -|123| libndp | (1.8-r0) | -|124| libnewt | (0.52.23-r0) | -|125| libnl | (3.5.0-r1) | -|126| libnsl2 | (2.0.0-r0) | -|127| libnss-mdns | (0.15.1-r1) | -|128| liboauth | (1.0.3-r0) | -|129| libogg | (1.3.5-r0) | -|130| libol | (0.3.18-r0) | -|131| libomxil | (0.9.3-r1) | -|132| libopus | (1.3.1-r0) | -|133| libpam | (1.5.2-r0) | -|134| libpcap | (1.10.1-r1) | -|135| libpciaccess | (0.16-r0) | -|136| libpcre2 | (10.40-r0) | -|137| libpcre | (8.39-r0) | -|138| libpng | (1.6.39-r0) | -|139| libpsl | (0.21.1-r0) | -|140| libpthread-stubs | (0.4-r0) | -|141| libsamplerate0 | (0.2.2-r1) | -|142| libsdl | (1.2.15-r3) | -|143| libsdl-image | (1.2.12-r0) | -|144| libsdl-ttf | (2.0.11-r0) | -|145| libseccomp | (2.4.3-r0) | -|146| libsndfile1 | (1.0.31-r0) | -|147| libsolv | (0.7.22-r0) | -|148| libsoup-2.4 | (2.74.2-r1) | -|149| libsoup | (3.6.5-r0) | -|150| libstd-rs | (1.72.0-r0) | -|151| libtasn1 | (4.13-r1) | -|152| libtheora | (1.1.1-r1) | -|153| libtinyxml | (2.6.2-r5) | -|154| libtinyxml2 | (9.0.0-r0) | -|155| libtirpc | (1.3.2-r0) | -|156| libtool | (2.4.7-r0) | -|157| libunistring | (1.0-r0) | -|158| libunwind | (1.7.0-r0) | -|159| liburcu | (0.13.2-r0) | -|160| libusb1 | (1.0.27-r0) | -|161| libuv | (1.44.2-r0) | -|162| libvorbis | (1.3.7-r0) | -|163| libvpx | (1.12.0-r0) | -|164| libwebp | (1.3.2-r0) | -|165| libwebsockets | (4.2.2-r0) | -|166| libxcrypt | (4.4.33-r0) | -|167| libxkbcommon | (0.5.0-r0) | -|168| libxml2 | (2.9.14-r0) | -|169| libxslt | (1.1.35-r0) | -|170| libzip | (1.8.0-r0) | -|171| lighttpd | (1.4.53-r3) | -|172| linenoise | (1.0.0+git0+97d2850af1-r1) | -|173| linux-libc-headers | (4.9-r2) | -|174| log4c | (1.2.3-r0) | -|175| logrotate | (3.21.0-r1) | -|176| lsof | (4.94.0-r0) | -|177| lttng-ust | (2.13.6-r0) | -|178| lua | (5.4.4-r0) | -|179| lvm2 | (2.03.11-r0) | -|180| lz4 | (1.9.4-r0) | -|181| lzo | (2.10-r0) | -|182| m4 | (1.4.9-r2) | -|183| mbedtls | (2.16.3-r0) | -|184| mdns | (1556.80.2-r0) | -|185| minizip | (1.0.0+git0+71ef99f6a0-r0) | -|186| mongoose | (2.6-r0) | -|187| msgpack-c | (4.0.0+git0+a9a48cea3a-r0) | -|188| mtdev | (1.1.6-r0) | -|189| mtd-utils | (2.1.5-r1) | -|190| nanomsg | (1.1.5-r0) | -|191| ncurses | (6.3+20220423-r1) | -|192| ndisc6 | (1.0.6-r0) | -|193| ne10 | (1.2.1gitr+0+18c4c982a5-r0) | -|194| nettle | (2.7.1-r0) | -|195| networkmanager | (1.43.7-r5) | -|196| nghttp2 | (1.48.0-r1) | -|197| nopoll | (0.3.2.b232-r0) | -|198| nspr | (4.29-r0) | -|199| nss | (3.74-r1) | -|200| openjpeg | (2.4.0-r0) | -|201| openssh | (8.9p1-r0) | -|202| openssl-1.1.1l | (1.1.1l-r0) | -|203| openssl | (3.0.15-r0) | -|204| opkg | (0.5.0-r1) | -|205| opkg-arch-config | (1.0-r1) | -|206| opkg-utils | (0.5.0-r1) | -|207| orc | (0.4.31-r0) | -|208| packagegroup-oss-layer | (4.7.0-r0) | -|209| perl | (5.34.3-r0) | -|210| pixman | (0.40.0-r0) | -|211| popt | (1.18-r0) | -|212| procps | (3.3.17-r1) | -|213| protobuf | (3.19.6-r0) | -|214| protobuf-c | (1.4.1-r0) | -|215| python | (2.7.18-r0) | -|216| python3 | (3.10.15-r1) | -|217| python3-dbus | (1.2.18-r0) | -|218| qrencode | (4.1.1-r0) | -|219| rapidjson | (1.1.0+git0+0ccdbf364c-r0) | -|220| rdkperf | (git-r0) | -|221| rdm | (1.0.1-r1) | -|222| re2 | (2020.11.01-r0) | -|223| readline | (5.2-r9) | -|224| redis | (7.0.13-r1) | -|225| run-postinsts | (1.0-r10) | -|226| safec | (3.7.1-r0) | -|227| safec-common-wrapper | (1.0-r0) | -|228| sbc | (1.5-r0) | -|229| sed | (4.1.2-r0) | -|230| shadow | (4.11.1-r0) | -|231| shadow-securetty | (4.6-r3) | -|232| shared-mime-info | (2.1-r0) | -|233| slang | (2.3.2-r0) | -|234| smcroute | (2.4.4-r0) | -|235| speex | (1.2.0-r0) | -|236| speexdsp | (1.2.0-r0) | -|237| sqlite | (2.8.17-r7) | -|238| sqlite3 | (3.38.5-r1) | -|239| strace | (5.16-r0) | -|240| stunnel | (5.65-r2) | -|241| sysfsutils | (2.1.0-r6) | -|242| syslog-ng | (3.36.1-r3) | -|243| systemd | (230+git0+3a74d4fc90-r11) | -|244| systemd-serialgetty | (1.0.0-r5) | -|245| taglib | (1.12-r0) | -|246| tcpdump | (4.99.4-r0) | -|247| tcp-wrappers | (7.6-r10) | -|248| tiff | (4.3.0-r0) | -|249| trace-cmd | (2.9.1-r0) | -|250| tremor | (20180319-r0) | -|251| trower-base64 | (1.0-r0) | -|252| tzdata | (2024a-r1) | -|253| udev-extraconf | (1.1-r1) | -|254| unzip | (6.0-r5) | -|255| update-rc.d | (0.8-r0) | -|256| util-linux | (2.37.4-r1) | -|257| util-linux-libuuid | (2.37.4-r0) | -|258| util-macros | (1.19.3-r0) | -|259| vala | (0.56.3-r0) | -|260| vmtouch | (1.3.1-r0) | -|261| wayland | (1.20.0-r0) | -|262| wayland-protocols | (1.25-r1) | -|263| websocketpp | (0.8.2-r0) | -|264| wireless-regdb | (2024.07.04-r0) | -|265| wireless-tools | (30.pre9-r0) | -|266| woff2 | (1.0.2-r0) | -|267| wpa-supplicant | (2.10-r7) | -|268| xkeyboard-config | (2.35.1-r0) | -|269| xmlsec1 | (1.2.33-r1) | -|270| xz | (5.2.6-r0) | -|271| yajl | (2.1.0-r0) | -|272| zlib | (1.2.11-r0) | -|273| zstd | (1.5.2-r0) | +|44| ethtool | (5.16-r0) | +|45| evtest | (1.34-r0) | +|46| expat | (2.5.0-r0) | +|47| fcgi | (2.4.2-r0) | +|48| file | (5.41-r0) | +|49| findutils | (4.2.31-r0) | +|50| flac | (1.3.4-r0) | +|51| flex | (2.6.4-r0) | +|52| fontconfig | (2.13.1-r0) | +|53| freetype | (2.11.1-r1) | +|54| fribidi | (1.0.13-r0) | +|55| gawk | (3.1.5-r2) | +|56| gcc-runtime | (11.3.0-r0) | +|57| gcc-sanitizers | (11.3.0-r0) | +|58| gdbm | (1.8.3-r4) | +|59| gdk-pixbuf | (2.42.10-r0) | +|60| gettext | (0.16.1-r6) | +|61| gflags | (2.2.2-r0) | +|62| glib-2.0 | (2.72.3-r1) | +|63| glibc | (2.35-r1) | +|64| glibc-locale | (2.35-r0) | +|65| glibc-mtrace | (2.35-r0) | +|66| glib-networking | (2.72.2-r1) | +|67| gmp | (4.2.1-r0) | +|68| gnutls | (3.3.30-r1) | +|69| gobject-introspection | (1.72.0-r0) | +|70| googletest | (1.11.0+git0+9e71237221-r0) | +|71| graphite2 | (1.3.6-r0) | +|72| grpc | (1.46.7-r1) | +|73| gssdp | (1.4.0.1-r0) | +|74| gupnp | (0.20.10-r1) | +|75| harfbuzz | (4.0.1-r0) | +|76| heaptrack | (1.5.0-r0) | +|77| hiredis | (1.0.2-r0) | +|78| icu | (70.1-r0) | +|79| initscripts | (1.0-r155) | +|80| init-system-helpers | (1.62-r0) | +|81| iperf3 | (3.14-r0) | +|82| iptables | (1.8.7-r3) | +|83| iso-codes | (4.15.0-r0) | +|84| iw | (4.7-r0) | +|85| jansson | (2.13.1-r0) | +|86| jquery | (1.0.0-r3) | +|87| json-c | (0.15-r0) | +|88| jsoncpp | (1.8.4-r0) | +|89| jsonrpc | (1.3.0-r0) | +|90| kbd | (2.4.0-r0) | +|91| keyutils | (1.6.1-r0) | +|92| kmod | (29-r0) | +|93| lcms | (2.13.1-r0) | +|94| libaio | (0.3.112-r0) | +|95| libarchive | (3.6.1-r1) | +|96| libatomic-ops | (7.6.14-r0) | +|97| libbsd | (0.11.5-r0) | +|98| libcap | (2.66-r0) | +|99| libcap-ng | (0.8.2-r0) | +|100| libcgroup | (2.0.2-r0) | +|101| libcheck | (0.15.2-r0) | +|102| libcroco | (0.6.13-r0) | +|103| libdaemon | (0.14-r0) | +|104| libdash | (1.0.0+git0+f5b5d991af-r1) | +|105| libdwarf | (20210528-r0) | +|106| liberation-fonts | (2.1.5-r0) | +|107| libev | (4.33-r0) | +|108| libevdev | (1.12.1-r0) | +|109| libevent | (2.1.12-r0) | +|110| libexif | (0.6.24-r0) | +|111| libffi | (3.4.4-r0) | +|112| libgcc | (11.3.0-r0) | +|113| libgcrypt | (1.9.4-r0) | +|114| libgpg-error | (1.44-r0) | +|115| libgudev | (237-r0) | +|116| libical | (3.0.16-r1) | +|117| libidn2 | (2.3.2-r0) | +|118| libinput | (1.19.4-r0) | +|119| libjpeg | (62.3.0-r0) | +|120| libmanette | (0.2.6-r1) | +|121| libmd | (1.0.4-r0) | +|122| libmicrohttpd | (0.9.76-r0) | +|123| libmng | (2.0.3-r0) | +|124| libmnl | (1.0.4-r0) | +|125| libndp | (1.8-r0) | +|126| libnewt | (0.52.23-r0) | +|127| libnl | (3.5.0-r1) | +|128| libnsl2 | (2.0.0-r0) | +|129| libnss-mdns | (0.15.1-r1) | +|130| liboauth | (1.0.3-r0) | +|131| libogg | (1.3.5-r0) | +|132| libol | (0.3.18-r0) | +|133| libomxil | (0.9.3-r1) | +|134| libopus | (1.3.1-r0) | +|135| libpam | (1.5.2-r0) | +|136| libpcap | (1.10.1-r1) | +|137| libpciaccess | (0.16-r0) | +|138| libpcre2 | (10.40-r0) | +|139| libpcre | (8.39-r0) | +|140| libpng | (1.6.39-r0) | +|141| libpsl | (0.21.1-r0) | +|142| libpthread-stubs | (0.4-r0) | +|143| libsamplerate0 | (0.2.2-r1) | +|144| libsdl | (1.2.15-r3) | +|145| libsdl-image | (1.2.12-r0) | +|146| libsdl-ttf | (2.0.11-r0) | +|147| libseccomp | (2.4.3-r0) | +|148| libsndfile1 | (1.0.31-r0) | +|149| libsolv | (0.7.22-r0) | +|150| libsoup-2.4 | (2.74.2-r1) | +|151| libsoup | (3.6.5-r0) | +|152| libstd-rs | (1.72.0-r0) | +|153| libtasn1 | (4.13-r1) | +|154| libtheora | (1.1.1-r1) | +|155| libtinyxml | (2.6.2-r5) | +|156| libtinyxml2 | (9.0.0-r0) | +|157| libtirpc | (1.3.2-r0) | +|158| libtool | (2.4.7-r0) | +|159| libunistring | (1.0-r0) | +|160| libunwind | (1.7.0-r0) | +|161| liburcu | (0.13.2-r0) | +|162| libusb1 | (1.0.27-r0) | +|163| libuv | (1.44.2-r0) | +|164| libvorbis | (1.3.7-r0) | +|165| libvpx | (1.12.0-r0) | +|166| libwebp | (1.3.2-r0) | +|167| libwebsockets | (4.2.2-r0) | +|168| libxcrypt | (4.4.33-r0) | +|169| libxkbcommon | (0.5.0-r0) | +|170| libxml2 | (2.9.14-r1) | +|171| libxslt | (1.1.35-r0) | +|172| libzip | (1.8.0-r0) | +|173| lighttpd | (1.4.53-r3) | +|174| linenoise | (1.0.0+git0+97d2850af1-r1) | +|175| linux-libc-headers | (4.9-r2) | +|176| log4c | (1.2.3-r0) | +|177| logrotate | (3.21.0-r1) | +|178| lsof | (4.94.0-r0) | +|179| lttng-ust | (2.13.6-r0) | +|180| lua | (5.4.4-r0) | +|181| lvm2 | (2.03.11-r0) | +|182| lz4 | (1.9.4-r0) | +|183| lzo | (2.10-r0) | +|184| m4 | (1.4.9-r2) | +|185| mbedtls | (2.16.3-r0) | +|186| mdns | (1556.80.2-r0) | +|187| minizip | (1.0.0+git0+71ef99f6a0-r0) | +|188| mongoose | (2.6-r0) | +|189| msgpack-c | (4.0.0+git0+a9a48cea3a-r0) | +|190| mtdev | (1.1.6-r0) | +|191| mtd-utils | (2.1.5-r1) | +|192| nanomsg | (1.1.5-r0) | +|193| ncurses | (6.3+20220423-r1) | +|194| ndisc6 | (1.0.6-r0) | +|195| ne10 | (1.2.1gitr+0+18c4c982a5-r0) | +|196| nettle | (2.7.1-r0) | +|197| networkmanager | (1.43.7-r7) | +|198| nghttp2 | (1.48.0-r1) | +|199| nopoll | (0.3.2.b232-r0) | +|200| nspr | (4.29-r0) | +|201| nss | (3.74-r1) | +|202| openjpeg | (2.4.0-r0) | +|203| openssh | (8.9p1-r0) | +|204| openssl-1.1.1l | (1.1.1l-r0) | +|205| openssl | (3.0.15-r0) | +|206| opkg | (0.5.0-r1) | +|207| opkg-arch-config | (1.0-r1) | +|208| opkg-utils | (0.5.0-r1) | +|209| orc | (0.4.31-r0) | +|210| packagegroup-oss-layer | (4.8.0-r0) | +|211| perl | (5.34.3-r0) | +|212| pixman | (0.40.0-r0) | +|213| popt | (1.18-r0) | +|214| procps | (3.3.17-r1) | +|215| protobuf | (3.19.6-r0) | +|216| protobuf-c | (1.4.1-r0) | +|217| python | (2.7.18-r0) | +|218| python3 | (3.10.15-r1) | +|219| python3-dbus | (1.2.18-r0) | +|220| qrencode | (4.1.1-r0) | +|221| rapidjson | (1.1.0+git0+0ccdbf364c-r0) | +|222| rdkperf | (1.0.0+git0+d802d561c4-r0) | +|223| rdm | (1.0.1-r1) | +|224| re2 | (2020.11.01-r0) | +|225| readline | (5.2-r9) | +|226| redis | (7.0.13-r1) | +|227| run-postinsts | (1.0-r10) | +|228| safec | (3.7.1-r0) | +|229| safec-common-wrapper | (1.0-r0) | +|230| sbc | (1.5-r0) | +|231| sed | (4.1.2-r0) | +|232| shadow | (4.11.1-r0) | +|233| shadow-securetty | (4.6-r3) | +|234| shared-mime-info | (2.1-r0) | +|235| slang | (2.3.2-r0) | +|236| smcroute | (2.4.4-r0) | +|237| speex | (1.2.0-r0) | +|238| speexdsp | (1.2.0-r0) | +|239| sqlite | (2.8.17-r7) | +|240| sqlite3 | (3.38.5-r1) | +|241| strace | (5.16-r0) | +|242| stunnel | (5.65-r2) | +|243| sysfsutils | (2.1.0-r6) | +|244| syslog-ng | (3.36.1-r3) | +|245| systemd | (230+git0+3a74d4fc90-r12) | +|246| systemd-serialgetty | (1.0.0-r5) | +|247| taglib | (1.12-r0) | +|248| tcpdump | (4.99.4-r0) | +|249| tcp-wrappers | (7.6-r10) | +|250| tiff | (4.3.0-r0) | +|251| trace-cmd | (2.9.1-r0) | +|252| tremor | (20180319-r0) | +|253| trower-base64 | (1.0-r0) | +|254| tzdata | (2024a-r1) | +|255| udev-extraconf | (1.1-r1) | +|256| unzip | (6.0-r5) | +|257| update-rc.d | (0.8-r0) | +|258| util-linux | (2.37.4-r3) | +|259| util-linux-libuuid | (2.37.4-r0) | +|260| util-macros | (1.19.3-r0) | +|261| vala | (0.56.3-r0) | +|262| vmtouch | (1.3.1-r0) | +|263| wayland | (1.20.0-r0) | +|264| wayland-default-egl | (1.20.0-r0) | +|265| wayland-protocols | (1.25-r1) | +|266| websocketpp | (0.8.2-r0) | +|267| wireless-regdb | (2024.07.04-r0) | +|268| wireless-tools | (30.pre9-r0) | +|269| woff2 | (1.0.2-r0) | +|270| wpa-supplicant | (2.10-r7) | +|271| xkeyboard-config | (2.35.1-r0) | +|272| xmlsec1 | (1.2.33-r1) | +|273| xz | (5.2.6-r0) | +|274| yajl | (2.1.0-r0) | +|275| zlib | (1.2.11-r0) | +|276| zstd | (1.5.2-r0) | ### Diff report of the meta layers contributing to this release of OSS layer project is available at below links -- [ ] meta-oss-common-config [1.1.0-->1.2.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/1.1.0...1.2.0) -- [ ] meta-rdk-auxiliary [1.2.0-->1.3.0] (https://github.com/rdkcentral/meta-rdk-auxiliary/compare/1.2.0...1.3.0) -- [ ] meta-rdk-oss-reference [4.6.0-->4.7.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.6.0...4.7.0) -- [ ] poky [4.3.0-->4.3.1] (https://github.com/rdkcentral/poky/compare/4.3.0...4.3.1) +- [ ] meta-oss-common-config [1.2.0-->1.3.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/1.2.0...1.3.0) +- [ ] meta-rdk-auxiliary [1.3.0-->1.5.0] (https://github.com/rdkcentral/meta-rdk-auxiliary/compare/1.3.0...1.5.0) +- [ ] meta-rdk-oss-reference [4.7.0-->4.8.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.7.0...4.8.0) +- [ ] poky [4.3.1-->4.4.1] (https://github.com/rdkcentral/poky/compare/4.3.1...4.4.1) diff --git a/conf/machine/include/oss.inc b/conf/machine/include/oss.inc index b4e24fe..45861df 100644 --- a/conf/machine/include/oss.inc +++ b/conf/machine/include/oss.inc @@ -3,7 +3,7 @@ RDK_ARTIFACTS_BASE_URL ?= "" RDK_ARTIFACTS_URL ?= "" -OSS_LAYER_VERSION = "4.7.0" +OSS_LAYER_VERSION = "4.8.0" REL_OSS_MACHINE = "${@get_oss_machine(d)}" REL_OSS_LAYER_ARCH = "${@get_oss_arch(d)}" PACKAGE_EXTRA_ARCHS:append = "${@ '' if '${REL_OSS_LAYER_ARCH}' == '${OSS_LAYER_ARCH}' else ' ${REL_OSS_LAYER_ARCH}'}" From 00b7e8e20c32c478b9d0a85b17c29d9116c70a8c Mon Sep 17 00:00:00 2001 From: mselva006c Date: Sun, 10 Aug 2025 02:18:12 +0000 Subject: [PATCH 04/18] RDKE-849: Update change log for Rel 4.8.0 Reason for change: Update change log for oss release 4.8.0 Signed-off-by: mselva006c --- CHANGELOG.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0738cee..a62d30a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,30 @@ 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). +#### [4.8.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.2...4.8.0) + +- RDKOSS-420: Support for REL_OSS_LAYER_ARCH and OSS_LAYER_ARCH [`#43`](https://github.com/rdkcentral/meta-oss-reference-release/pull/43) +- RDKE-849: Update Release version [`be3ffce`](https://github.com/rdkcentral/meta-oss-reference-release/commit/be3ffce9c50c6f4973d10bc42db78cf08da83961) +- Merge tag '4.7.0' into develop [`89c0990`](https://github.com/rdkcentral/meta-oss-reference-release/commit/89c0990632c359e8ae3fa62d5880e655a4ee83e3) + +#### [4.7.2](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.1...4.7.2) + +> 29 July 2025 + +- RDKE-881: OSS hotfix release 4.7.1 [`b370310`](https://github.com/rdkcentral/meta-oss-reference-release/commit/b370310651d6dcfe2eb07a56231c765d679bdd69) +- RDKE-881: Updated changelog for rel 4.7.2 [`417a1ed`](https://github.com/rdkcentral/meta-oss-reference-release/commit/417a1eddbed662874e28e8fa8ec60c9e3cb46a8a) + +#### [4.7.1](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.0...4.7.1) + +> 14 July 2025 + +- RDKE-872: Update oss ipk url for release 4.7.1 [`8359390`](https://github.com/rdkcentral/meta-oss-reference-release/commit/8359390d511be305b0874d5d75caafc53be41c6d) +- RDKE-872: Update changelog for 4.7.1 release [`7f82a52`](https://github.com/rdkcentral/meta-oss-reference-release/commit/7f82a521e9964792447746fd040a2f102fa68fc5) + #### [4.7.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.6.4...4.7.0) +> 8 June 2025 + - RDKE-828: OSS release 4.7.0 [`#36`](https://github.com/rdkcentral/meta-oss-reference-release/pull/36) - Merge tag '4.6.4' into develop [`6379b57`](https://github.com/rdkcentral/meta-oss-reference-release/commit/6379b57cbb38a4ad012aa5d63ab009a1ad1e344e) From 6109869e439fc23150954e0a37d0bfc6f381ab69 Mon Sep 17 00:00:00 2001 From: Marcin Mikula Date: Thu, 14 Aug 2025 14:55:42 +0200 Subject: [PATCH 05/18] RDKDEV-1130: Weak assigment of REL_OSS_IPK_SERVER_PATH With this change REL_OSS_IPK_SERVER_PATH can be override from local.conf for custom/local builds. --- conf/machine/include/oss.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/include/oss.inc b/conf/machine/include/oss.inc index 45861df..90a895d 100644 --- a/conf/machine/include/oss.inc +++ b/conf/machine/include/oss.inc @@ -8,7 +8,7 @@ REL_OSS_MACHINE = "${@get_oss_machine(d)}" REL_OSS_LAYER_ARCH = "${@get_oss_arch(d)}" PACKAGE_EXTRA_ARCHS:append = "${@ '' if '${REL_OSS_LAYER_ARCH}' == '${OSS_LAYER_ARCH}' else ' ${REL_OSS_LAYER_ARCH}'}" REL_OSS_LAYER_EXTENSION = "${REL_OSS_LAYER_ARCH}" -REL_OSS_IPK_SERVER_PATH = "${RDK_ARTIFACTS_BASE_URL}/rdk-oss-release/${OSS_LAYER_VERSION}/${REL_OSS_MACHINE}/ipks" +REL_OSS_IPK_SERVER_PATH ?= "${RDK_ARTIFACTS_BASE_URL}/rdk-oss-release/${OSS_LAYER_VERSION}/${REL_OSS_MACHINE}/ipks" # To set the remote feeds IPK_FEED_URIS += " \ From d3253248d4a3bda7e39a86c3260e97f63281378b Mon Sep 17 00:00:00 2001 From: rdkcmf Date: Fri, 26 Sep 2025 11:34:34 +0100 Subject: [PATCH 06/18] Deploy cla action --- .github/workflows/cla.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 0550479..c58b1b0 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -1,13 +1,20 @@ name: "CLA" + +permissions: + contents: read + pull-requests: write + actions: write + statuses: write + on: issue_comment: types: [created] pull_request_target: - types: [opened,closed,synchronize] + types: [opened, closed, synchronize] jobs: CLA-Lite: name: "Signature" - uses: rdkcentral/cmf-actions/.github/workflows/cla.yml@main + uses: rdkcentral/cmf-actions/.github/workflows/cla.yml@v1 secrets: - PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ASSISTANT }} \ No newline at end of file + PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ASSISTANT }} From 5d31b549337f8e34cb02b3d3801e1dd36ea2dbc9 Mon Sep 17 00:00:00 2001 From: maniselva006c Date: Mon, 29 Sep 2025 13:16:01 -0400 Subject: [PATCH 07/18] RDKOSS-490: Move OSS_LAYER_VERSION to reference layer Reason for the change - The meta-oss-reference-release repository has been excluded from the manifest to support the new OSS consumption model. Consequently, the OSS_LAYER_VERSION parameter previously defined in that repository is no longer available to the build. To address this, the OSS_LAYER_VERSION parameter has been moved to the reference layer to ensure continued availability during the build process. --- conf/machine/include/oss.inc | 1 - 1 file changed, 1 deletion(-) diff --git a/conf/machine/include/oss.inc b/conf/machine/include/oss.inc index 45861df..e40a4ad 100644 --- a/conf/machine/include/oss.inc +++ b/conf/machine/include/oss.inc @@ -3,7 +3,6 @@ RDK_ARTIFACTS_BASE_URL ?= "" RDK_ARTIFACTS_URL ?= "" -OSS_LAYER_VERSION = "4.8.0" REL_OSS_MACHINE = "${@get_oss_machine(d)}" REL_OSS_LAYER_ARCH = "${@get_oss_arch(d)}" PACKAGE_EXTRA_ARCHS:append = "${@ '' if '${REL_OSS_LAYER_ARCH}' == '${OSS_LAYER_ARCH}' else ' ${REL_OSS_LAYER_ARCH}'}" From d20f5ae79925759e5d1664d0c0ddfd97b9cc3b8b Mon Sep 17 00:00:00 2001 From: mselva006c Date: Sat, 25 Oct 2025 01:27:37 +0000 Subject: [PATCH 08/18] RDKE-893: Update Release note for 4.9.0 Signed-off-by: mselva006c --- README.md | 481 ++++++++++++++++++----------------- conf/machine/include/oss.inc | 2 +- 2 files changed, 243 insertions(+), 240 deletions(-) diff --git a/README.md b/README.md index 65d5ab6..58e85ba 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,12 @@ RDKE OSS Layer Release Notes |---|----| |Classification|Public| |Document Version|Issue 1| -|Date|9th August 2025| +|Date|24th October 2025| |Author|RDKE Platform & Tools Team| | Components | Tag | |----------|--------| -| packagegroup-oss-layer | 4.8.0-r0| +| packagegroup-oss-layer | 4.9.0-r0| @@ -36,7 +36,7 @@ Unified OSS Layer - The components of the OSS (Open Source Software) layer, incl This release will provide a versioned `"meta-oss-reference-release"` that will be used by other stack layes to resolve build and runtime dependencies. -The 4.8.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: +The 4.9.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: 1. rdk-arm7a-oss: Default tuning is set to armv7athf-neon. 2. rdk-arm7ve-oss: Default tuning is set to armv7vethf-neon. 3. rdk-arm64-oss: 64-bit ARM architecture with a multilib configuration and default tuning set to armv7vethf-neon for compatibility with 32-bit systems. @@ -47,14 +47,15 @@ The IPK feed is automatically chosen based on the platform's default tuning conf ### OSS stack layer | Layer | Tag | |------|------| -|meta-rdk-auxiliary|1.5.0| -|meta-rdk-oss-reference|4.8.0| +|meta-rdk-auxiliary|1.6.0| +|meta-rdk-oss-reference|4.9.0| |meta-openembedded|rdk-4.0.0| |poky|rdk-4.4.1| |meta-python2|rdk-4.0.0| -|meta-rdk-oss-ext|1.4.0| +|meta-rdk-oss-ext|1.5.0| |meta-virtualization|rdk-4.0.0| |meta-clang|rdk-4.0.0| +|meta-lts-mixins|rdk-4.0.0| ### Components details in "packagegroup-oss-layer" @@ -68,7 +69,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |6| alsa-ucm-conf | (1.2.6.3-r0) | |7| alsa-utils | (1.2.6-r0) | |8| alsa-utils-scripts | (1.2.6-r0) | -|9| apparmor | (2.13.10-r0) | +|9| apparmor | (3.1.7-r0) | |10| atk | (2.38.0-r0) | |11| attr | (2.5.1-r0) | |12| autoconf-archive | (2022.02.11-r0) | @@ -95,10 +96,10 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |33| cunit | (2.1-3-r0) | |34| curl | (7.82.0-r1) | |35| db | (5.3.28-r1) | -|36| dbus | (1.14.8-r0) | +|36| dbus | (1.14.8-r1) | |37| dbus-glib | (0.112-r0) | |38| dibbler | (1.0.1+1.0.2RC1+gita7c6cf58a88a510cb00841351e75030ce78d36bf-r1) | -|39| dnsmasq | (2.90-r2) | +|39| dnsmasq | (2.90-r4) | |40| dosfstools | (2.11-r0) | |41| e2fsprogs | (1.46.5-r0) | |42| ebtables | (2.0.11-r4) | @@ -106,239 +107,241 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |44| ethtool | (5.16-r0) | |45| evtest | (1.34-r0) | |46| expat | (2.5.0-r0) | -|47| fcgi | (2.4.2-r0) | +|47| fcgi | (2.4.2-r1) | |48| file | (5.41-r0) | |49| findutils | (4.2.31-r0) | |50| flac | (1.3.4-r0) | |51| flex | (2.6.4-r0) | -|52| fontconfig | (2.13.1-r0) | -|53| freetype | (2.11.1-r1) | -|54| fribidi | (1.0.13-r0) | -|55| gawk | (3.1.5-r2) | -|56| gcc-runtime | (11.3.0-r0) | -|57| gcc-sanitizers | (11.3.0-r0) | -|58| gdbm | (1.8.3-r4) | -|59| gdk-pixbuf | (2.42.10-r0) | -|60| gettext | (0.16.1-r6) | -|61| gflags | (2.2.2-r0) | -|62| glib-2.0 | (2.72.3-r1) | -|63| glibc | (2.35-r1) | -|64| glibc-locale | (2.35-r0) | -|65| glibc-mtrace | (2.35-r0) | -|66| glib-networking | (2.72.2-r1) | -|67| gmp | (4.2.1-r0) | -|68| gnutls | (3.3.30-r1) | -|69| gobject-introspection | (1.72.0-r0) | -|70| googletest | (1.11.0+git0+9e71237221-r0) | -|71| graphite2 | (1.3.6-r0) | -|72| grpc | (1.46.7-r1) | -|73| gssdp | (1.4.0.1-r0) | -|74| gupnp | (0.20.10-r1) | -|75| harfbuzz | (4.0.1-r0) | -|76| heaptrack | (1.5.0-r0) | -|77| hiredis | (1.0.2-r0) | -|78| icu | (70.1-r0) | -|79| initscripts | (1.0-r155) | -|80| init-system-helpers | (1.62-r0) | -|81| iperf3 | (3.14-r0) | -|82| iptables | (1.8.7-r3) | -|83| iso-codes | (4.15.0-r0) | -|84| iw | (4.7-r0) | -|85| jansson | (2.13.1-r0) | -|86| jquery | (1.0.0-r3) | -|87| json-c | (0.15-r0) | -|88| jsoncpp | (1.8.4-r0) | -|89| jsonrpc | (1.3.0-r0) | -|90| kbd | (2.4.0-r0) | -|91| keyutils | (1.6.1-r0) | -|92| kmod | (29-r0) | -|93| lcms | (2.13.1-r0) | -|94| libaio | (0.3.112-r0) | -|95| libarchive | (3.6.1-r1) | -|96| libatomic-ops | (7.6.14-r0) | -|97| libbsd | (0.11.5-r0) | -|98| libcap | (2.66-r0) | -|99| libcap-ng | (0.8.2-r0) | -|100| libcgroup | (2.0.2-r0) | -|101| libcheck | (0.15.2-r0) | -|102| libcroco | (0.6.13-r0) | -|103| libdaemon | (0.14-r0) | -|104| libdash | (1.0.0+git0+f5b5d991af-r1) | -|105| libdwarf | (20210528-r0) | -|106| liberation-fonts | (2.1.5-r0) | -|107| libev | (4.33-r0) | -|108| libevdev | (1.12.1-r0) | -|109| libevent | (2.1.12-r0) | -|110| libexif | (0.6.24-r0) | -|111| libffi | (3.4.4-r0) | -|112| libgcc | (11.3.0-r0) | -|113| libgcrypt | (1.9.4-r0) | -|114| libgpg-error | (1.44-r0) | -|115| libgudev | (237-r0) | -|116| libical | (3.0.16-r1) | -|117| libidn2 | (2.3.2-r0) | -|118| libinput | (1.19.4-r0) | -|119| libjpeg | (62.3.0-r0) | -|120| libmanette | (0.2.6-r1) | -|121| libmd | (1.0.4-r0) | -|122| libmicrohttpd | (0.9.76-r0) | -|123| libmng | (2.0.3-r0) | -|124| libmnl | (1.0.4-r0) | -|125| libndp | (1.8-r0) | -|126| libnewt | (0.52.23-r0) | -|127| libnl | (3.5.0-r1) | -|128| libnsl2 | (2.0.0-r0) | -|129| libnss-mdns | (0.15.1-r1) | -|130| liboauth | (1.0.3-r0) | -|131| libogg | (1.3.5-r0) | -|132| libol | (0.3.18-r0) | -|133| libomxil | (0.9.3-r1) | -|134| libopus | (1.3.1-r0) | -|135| libpam | (1.5.2-r0) | -|136| libpcap | (1.10.1-r1) | -|137| libpciaccess | (0.16-r0) | -|138| libpcre2 | (10.40-r0) | -|139| libpcre | (8.39-r0) | -|140| libpng | (1.6.39-r0) | -|141| libpsl | (0.21.1-r0) | -|142| libpthread-stubs | (0.4-r0) | -|143| libsamplerate0 | (0.2.2-r1) | -|144| libsdl | (1.2.15-r3) | -|145| libsdl-image | (1.2.12-r0) | -|146| libsdl-ttf | (2.0.11-r0) | -|147| libseccomp | (2.4.3-r0) | -|148| libsndfile1 | (1.0.31-r0) | -|149| libsolv | (0.7.22-r0) | -|150| libsoup-2.4 | (2.74.2-r1) | -|151| libsoup | (3.6.5-r0) | -|152| libstd-rs | (1.72.0-r0) | -|153| libtasn1 | (4.13-r1) | -|154| libtheora | (1.1.1-r1) | -|155| libtinyxml | (2.6.2-r5) | -|156| libtinyxml2 | (9.0.0-r0) | -|157| libtirpc | (1.3.2-r0) | -|158| libtool | (2.4.7-r0) | -|159| libunistring | (1.0-r0) | -|160| libunwind | (1.7.0-r0) | -|161| liburcu | (0.13.2-r0) | -|162| libusb1 | (1.0.27-r0) | -|163| libuv | (1.44.2-r0) | -|164| libvorbis | (1.3.7-r0) | -|165| libvpx | (1.12.0-r0) | -|166| libwebp | (1.3.2-r0) | -|167| libwebsockets | (4.2.2-r0) | -|168| libxcrypt | (4.4.33-r0) | -|169| libxkbcommon | (0.5.0-r0) | -|170| libxml2 | (2.9.14-r1) | -|171| libxslt | (1.1.35-r0) | -|172| libzip | (1.8.0-r0) | -|173| lighttpd | (1.4.53-r3) | -|174| linenoise | (1.0.0+git0+97d2850af1-r1) | -|175| linux-libc-headers | (4.9-r2) | -|176| log4c | (1.2.3-r0) | -|177| logrotate | (3.21.0-r1) | -|178| lsof | (4.94.0-r0) | -|179| lttng-ust | (2.13.6-r0) | -|180| lua | (5.4.4-r0) | -|181| lvm2 | (2.03.11-r0) | -|182| lz4 | (1.9.4-r0) | -|183| lzo | (2.10-r0) | -|184| m4 | (1.4.9-r2) | -|185| mbedtls | (2.16.3-r0) | -|186| mdns | (1556.80.2-r0) | -|187| minizip | (1.0.0+git0+71ef99f6a0-r0) | -|188| mongoose | (2.6-r0) | -|189| msgpack-c | (4.0.0+git0+a9a48cea3a-r0) | -|190| mtdev | (1.1.6-r0) | -|191| mtd-utils | (2.1.5-r1) | -|192| nanomsg | (1.1.5-r0) | -|193| ncurses | (6.3+20220423-r1) | -|194| ndisc6 | (1.0.6-r0) | -|195| ne10 | (1.2.1gitr+0+18c4c982a5-r0) | -|196| nettle | (2.7.1-r0) | -|197| networkmanager | (1.43.7-r7) | -|198| nghttp2 | (1.48.0-r1) | -|199| nopoll | (0.3.2.b232-r0) | -|200| nspr | (4.29-r0) | -|201| nss | (3.74-r1) | -|202| openjpeg | (2.4.0-r0) | -|203| openssh | (8.9p1-r0) | -|204| openssl-1.1.1l | (1.1.1l-r0) | -|205| openssl | (3.0.15-r0) | -|206| opkg | (0.5.0-r1) | -|207| opkg-arch-config | (1.0-r1) | -|208| opkg-utils | (0.5.0-r1) | -|209| orc | (0.4.31-r0) | -|210| packagegroup-oss-layer | (4.8.0-r0) | -|211| perl | (5.34.3-r0) | -|212| pixman | (0.40.0-r0) | -|213| popt | (1.18-r0) | -|214| procps | (3.3.17-r1) | -|215| protobuf | (3.19.6-r0) | -|216| protobuf-c | (1.4.1-r0) | -|217| python | (2.7.18-r0) | -|218| python3 | (3.10.15-r1) | -|219| python3-dbus | (1.2.18-r0) | -|220| qrencode | (4.1.1-r0) | -|221| rapidjson | (1.1.0+git0+0ccdbf364c-r0) | -|222| rdkperf | (1.0.0+git0+d802d561c4-r0) | -|223| rdm | (1.0.1-r1) | -|224| re2 | (2020.11.01-r0) | -|225| readline | (5.2-r9) | -|226| redis | (7.0.13-r1) | -|227| run-postinsts | (1.0-r10) | -|228| safec | (3.7.1-r0) | -|229| safec-common-wrapper | (1.0-r0) | -|230| sbc | (1.5-r0) | -|231| sed | (4.1.2-r0) | -|232| shadow | (4.11.1-r0) | -|233| shadow-securetty | (4.6-r3) | -|234| shared-mime-info | (2.1-r0) | -|235| slang | (2.3.2-r0) | -|236| smcroute | (2.4.4-r0) | -|237| speex | (1.2.0-r0) | -|238| speexdsp | (1.2.0-r0) | -|239| sqlite | (2.8.17-r7) | -|240| sqlite3 | (3.38.5-r1) | -|241| strace | (5.16-r0) | -|242| stunnel | (5.65-r2) | -|243| sysfsutils | (2.1.0-r6) | -|244| syslog-ng | (3.36.1-r3) | -|245| systemd | (230+git0+3a74d4fc90-r12) | -|246| systemd-serialgetty | (1.0.0-r5) | -|247| taglib | (1.12-r0) | -|248| tcpdump | (4.99.4-r0) | -|249| tcp-wrappers | (7.6-r10) | -|250| tiff | (4.3.0-r0) | -|251| trace-cmd | (2.9.1-r0) | -|252| tremor | (20180319-r0) | -|253| trower-base64 | (1.0-r0) | -|254| tzdata | (2024a-r1) | -|255| udev-extraconf | (1.1-r1) | -|256| unzip | (6.0-r5) | -|257| update-rc.d | (0.8-r0) | -|258| util-linux | (2.37.4-r3) | -|259| util-linux-libuuid | (2.37.4-r0) | -|260| util-macros | (1.19.3-r0) | -|261| vala | (0.56.3-r0) | -|262| vmtouch | (1.3.1-r0) | -|263| wayland | (1.20.0-r0) | -|264| wayland-default-egl | (1.20.0-r0) | -|265| wayland-protocols | (1.25-r1) | -|266| websocketpp | (0.8.2-r0) | -|267| wireless-regdb | (2024.07.04-r0) | -|268| wireless-tools | (30.pre9-r0) | -|269| woff2 | (1.0.2-r0) | -|270| wpa-supplicant | (2.10-r7) | -|271| xkeyboard-config | (2.35.1-r0) | -|272| xmlsec1 | (1.2.33-r1) | -|273| xz | (5.2.6-r0) | -|274| yajl | (2.1.0-r0) | -|275| zlib | (1.2.11-r0) | -|276| zstd | (1.5.2-r0) | +|52| fmt | (8.1.1-r0) | +|53| fontconfig | (2.13.1-r0) | +|54| freetype | (2.11.1-r1) | +|55| fribidi | (1.0.13-r0) | +|56| gawk | (3.1.5-r2) | +|57| gcc-runtime | (11.3.0-r0) | +|58| gcc-sanitizers | (11.3.0-r0) | +|59| gdbm | (1.8.3-r4) | +|60| gdk-pixbuf | (2.42.10-r0) | +|61| gettext | (0.16.1-r6) | +|62| gflags | (2.2.2-r0) | +|63| glib-2.0 | (2.72.3-r1) | +|64| glibc | (2.35-r1) | +|65| glibc-locale | (2.35-r0) | +|66| glibc-mtrace | (2.35-r0) | +|67| glib-networking | (2.72.2-r2) | +|68| gmp | (4.2.1-r0) | +|69| gnutls | (3.3.30-r1) | +|70| gobject-introspection | (1.72.0-r0) | +|71| googletest | (1.11.0+git0+9e71237221-r0) | +|72| graphite2 | (1.3.6-r0) | +|73| grpc | (1.46.7-r1) | +|74| gssdp | (1.4.0.1-r0) | +|75| gupnp | (0.20.10-r1) | +|76| harfbuzz | (4.0.1-r0) | +|77| heaptrack | (1.5.0-r0) | +|78| hiredis | (1.0.2-r0) | +|79| icu | (70.1-r0) | +|80| initscripts | (1.0-r155) | +|81| init-system-helpers | (1.62-r0) | +|82| iperf3 | (3.14-r0) | +|83| iptables | (1.8.7-r3) | +|84| iso-codes | (4.15.0-r0) | +|85| iw | (4.7-r0) | +|86| jansson | (2.13.1-r0) | +|87| jquery | (1.0.0-r3) | +|88| json-c | (0.15-r0) | +|89| jsoncpp | (1.8.4-r0) | +|90| jsonrpc | (1.3.0-r0) | +|91| kbd | (2.4.0-r0) | +|92| keyutils | (1.6.1-r0) | +|93| kmod | (29-r0) | +|94| lcms | (2.13.1-r0) | +|95| libaio | (0.3.112-r0) | +|96| libarchive | (3.6.1-r2) | +|97| libatomic-ops | (7.6.14-r0) | +|98| libbsd | (0.11.5-r0) | +|99| libcap | (2.66-r0) | +|100| libcap-ng | (0.8.2-r0) | +|101| libcgroup | (2.0.2-r0) | +|102| libcheck | (0.15.2-r0) | +|103| libcroco | (0.6.13-r0) | +|104| libdaemon | (0.14-r0) | +|105| libdash | (1.0.0+git0+f5b5d991af-r1) | +|106| libdwarf | (20210528-r0) | +|107| liberation-fonts | (2.1.5-r0) | +|108| libev | (4.33-r0) | +|109| libevdev | (1.12.1-r1) | +|110| libevent | (2.1.12-r0) | +|111| libexif | (0.6.24-r0) | +|112| libffi | (3.4.4-r0) | +|113| libgcc | (11.3.0-r0) | +|114| libgcrypt | (1.9.4-r1) | +|115| libgpg-error | (1.44-r1) | +|116| libgudev | (237-r0) | +|117| libical | (3.0.16-r1) | +|118| libidn2 | (2.3.2-r0) | +|119| libinput | (1.19.4-r0) | +|120| libjpeg | (62.3.0-r0) | +|121| libmanette | (0.2.6-r1) | +|122| libmd | (1.0.4-r0) | +|123| libmicrohttpd | (0.9.76-r0) | +|124| libmng | (2.0.3-r0) | +|125| libmnl | (1.0.4-r0) | +|126| libndp | (1.8-r0) | +|127| libnewt | (0.52.23-r0) | +|128| libnl | (3.5.0-r1) | +|129| libnsl2 | (2.0.0-r0) | +|130| libnss-mdns | (0.15.1-r1) | +|131| liboauth | (1.0.3-r0) | +|132| libogg | (1.3.5-r0) | +|133| libol | (0.3.18-r0) | +|134| libomxil | (0.9.3-r1) | +|135| libopus | (1.3.1-r0) | +|136| libpam | (1.5.2-r0) | +|137| libpcap | (1.10.1-r1) | +|138| libpciaccess | (0.16-r0) | +|139| libpcre2 | (10.40-r0) | +|140| libpcre | (8.39-r0) | +|141| libpng | (1.6.39-r0) | +|142| libpsl | (0.21.1-r0) | +|143| libpthread-stubs | (0.4-r0) | +|144| libsamplerate0 | (0.2.2-r1) | +|145| libsdl | (1.2.15-r3) | +|146| libsdl-image | (1.2.12-r0) | +|147| libsdl-ttf | (2.0.11-r0) | +|148| libseccomp | (2.4.3-r1) | +|149| libsndfile1 | (1.0.31-r0) | +|150| libsolv | (0.7.22-r0) | +|151| libsoup-2.4 | (2.74.2-r1) | +|152| libsoup | (3.6.5-r1) | +|153| libstd-rs | (1.82.0-r0) | +|154| libtasn1 | (4.13-r1) | +|155| libtheora | (1.1.1-r1) | +|156| libtinyxml | (2.6.2-r5) | +|157| libtinyxml2 | (9.0.0-r0) | +|158| libtirpc | (1.3.2-r0) | +|159| libtool | (2.4.7-r0) | +|160| libunistring | (1.0-r0) | +|161| libunwind | (1.7.0-r0) | +|162| liburcu | (0.13.2-r0) | +|163| libusb1 | (1.0.27-r0) | +|164| libuv | (1.44.2-r0) | +|165| libvorbis | (1.3.7-r0) | +|166| libvpx | (1.12.0-r1) | +|167| libwebp | (1.3.2-r0) | +|168| libwebsockets | (4.2.2-r0) | +|169| libxcrypt | (4.4.33-r0) | +|170| libxkbcommon | (0.5.0-r0) | +|171| libxml2 | (2.9.14-r1) | +|172| libxslt | (1.1.35-r0) | +|173| libzip | (1.8.0-r0) | +|174| lighttpd | (1.4.53-r3) | +|175| linenoise | (1.0.0+git0+97d2850af1-r1) | +|176| linux-libc-headers | (4.9-r2) | +|177| log4c | (1.2.3-r0) | +|178| logrotate | (3.21.0-r2) | +|179| lsof | (4.94.0-r0) | +|180| lttng-ust | (2.13.6-r0) | +|181| lua | (5.4.4-r0) | +|182| lvm2 | (2.03.11-r0) | +|183| lz4 | (1.9.4-r0) | +|184| lzo | (2.10-r0) | +|185| m4 | (1.4.9-r2) | +|186| mbedtls | (2.16.3-r0) | +|187| mdns | (1556.80.2-r0) | +|188| minizip | (1.0.0+git0+71ef99f6a0-r0) | +|189| mongoose | (2.6-r0) | +|190| mosquitto | (2.0.18-r0) | +|191| msgpack-c | (4.0.0+git0+a9a48cea3a-r0) | +|192| mtdev | (1.1.6-r0) | +|193| mtd-utils | (2.1.5-r2) | +|194| nanomsg | (1.1.5-r0) | +|195| ncurses | (6.3+20220423-r1) | +|196| ndisc6 | (1.0.6-r0) | +|197| ne10 | (1.2.1gitr+0+18c4c982a5-r0) | +|198| nettle | (2.7.1-r1) | +|199| networkmanager | (1.43.7-r11) | +|200| nghttp2 | (1.48.0-r1) | +|201| nopoll | (0.3.2.b232-r0) | +|202| nspr | (4.29-r0) | +|203| nss | (3.74-r2) | +|204| openjpeg | (2.4.0-r0) | +|205| openssh | (8.9p1-r0) | +|206| openssl-1.1.1l | (1.1.1l-r0) | +|207| openssl | (3.0.15-r0) | +|208| opkg | (0.5.0-r1) | +|209| opkg-arch-config | (1.0-r1) | +|210| opkg-utils | (0.5.0-r1) | +|211| orc | (0.4.31-r0) | +|212| packagegroup-oss-layer | (4.9.0-r0) | +|213| paho-mqtt-c | (1.3.10-r0) | +|214| perl | (5.34.3-r0) | +|215| pixman | (0.40.0-r0) | +|216| popt | (1.18-r0) | +|217| procps | (3.3.17-r1) | +|218| protobuf | (3.19.6-r0) | +|219| protobuf-c | (1.4.1-r0) | +|220| python | (2.7.18-r0) | +|221| python3 | (3.10.15-r1) | +|222| python3-dbus | (1.2.18-r0) | +|223| qrencode | (4.1.1-r0) | +|224| rapidjson | (1.1.0+git0+0ccdbf364c-r0) | +|225| rdkperf | (1.0.0+git0+d802d561c4-r0) | +|226| rdm | (1.0.1-r1) | +|227| re2 | (2020.11.01-r0) | +|228| readline | (5.2-r9) | +|229| redis | (7.0.13-r1) | +|230| run-postinsts | (1.0-r10) | +|231| safec | (3.7.1-r0) | +|232| safec-common-wrapper | (1.0-r0) | +|233| sbc | (1.5-r0) | +|234| sed | (4.1.2-r0) | +|235| shadow | (4.11.1-r0) | +|236| shadow-securetty | (4.6-r3) | +|237| shared-mime-info | (2.1-r0) | +|238| slang | (2.3.2-r0) | +|239| smcroute | (2.4.4-r0) | +|240| speex | (1.2.0-r0) | +|241| speexdsp | (1.2.0-r0) | +|242| sqlite | (2.8.17-r7) | +|243| sqlite3 | (3.38.5-r1) | +|244| strace | (5.16-r0) | +|245| stunnel | (5.65-r2) | +|246| sysfsutils | (2.1.0-r6) | +|247| syslog-ng | (3.36.1-r3) | +|248| systemd | (230+git0+3a74d4fc90-r13) | +|249| systemd-serialgetty | (1.0.0-r5) | +|250| taglib | (1.12-r0) | +|251| tcpdump | (4.99.4-r0) | +|252| tcp-wrappers | (7.6-r10) | +|253| tiff | (4.3.0-r0) | +|254| trace-cmd | (2.9.1-r0) | +|255| tremor | (20180319-r0) | +|256| trower-base64 | (1.0-r0) | +|257| tzdata | (2024a-r1) | +|258| udev-extraconf | (1.1-r1) | +|259| unzip | (6.0-r5) | +|260| update-rc.d | (0.8-r0) | +|261| util-linux | (2.37.4-r3) | +|262| util-linux-libuuid | (2.37.4-r0) | +|263| util-macros | (1.19.3-r0) | +|264| vala | (0.56.3-r0) | +|265| vmtouch | (1.3.1-r0) | +|266| wayland | (1.20.0-r0) | +|267| wayland-default-egl | (1.20.0-r0) | +|268| wayland-protocols | (1.25-r1) | +|269| websocketpp | (0.8.2-r0) | +|270| wireless-regdb | (2024.07.04-r0) | +|271| wireless-tools | (30.pre9-r0) | +|272| woff2 | (1.0.2-r0) | +|273| wpa-supplicant | (2.10-r7) | +|274| xkeyboard-config | (2.35.1-r0) | +|275| xmlsec1 | (1.2.33-r1) | +|276| xz | (5.2.6-r0) | +|277| yajl | (2.1.0-r0) | +|278| zlib | (1.2.11-r0) | +|279| zstd | (1.5.2-r0) | ### Diff report of the meta layers contributing to this release of OSS layer project is available at below links -- [ ] meta-oss-common-config [1.2.0-->1.3.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/1.2.0...1.3.0) -- [ ] meta-rdk-auxiliary [1.3.0-->1.5.0] (https://github.com/rdkcentral/meta-rdk-auxiliary/compare/1.3.0...1.5.0) -- [ ] meta-rdk-oss-reference [4.7.0-->4.8.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.7.0...4.8.0) -- [ ] poky [4.3.1-->4.4.1] (https://github.com/rdkcentral/poky/compare/4.3.1...4.4.1) +- [ ] meta-oss-common-config [1.3.0-->1.3.1] (https://github.com/rdkcentral/meta-oss-common-config/compare/1.3.0...1.3.1) +- [ ] meta-rdk-auxiliary [1.5.0-->1.6.0] (https://github.com/rdkcentral/meta-rdk-auxiliary/compare/1.5.0...1.6.0) +- [ ] meta-rdk-oss-reference [4.8.0-->4.9.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.8.0...4.9.0) diff --git a/conf/machine/include/oss.inc b/conf/machine/include/oss.inc index e40a4ad..333fdae 100644 --- a/conf/machine/include/oss.inc +++ b/conf/machine/include/oss.inc @@ -7,7 +7,7 @@ REL_OSS_MACHINE = "${@get_oss_machine(d)}" REL_OSS_LAYER_ARCH = "${@get_oss_arch(d)}" PACKAGE_EXTRA_ARCHS:append = "${@ '' if '${REL_OSS_LAYER_ARCH}' == '${OSS_LAYER_ARCH}' else ' ${REL_OSS_LAYER_ARCH}'}" REL_OSS_LAYER_EXTENSION = "${REL_OSS_LAYER_ARCH}" -REL_OSS_IPK_SERVER_PATH = "${RDK_ARTIFACTS_BASE_URL}/rdk-oss-release/${OSS_LAYER_VERSION}/${REL_OSS_MACHINE}/ipks" +REL_OSS_IPK_SERVER_PATH = "${RDK_ARTIFACTS_BASE_URL}/rdk-oss-rel/${OSS_LAYER_VERSION}/${REL_OSS_MACHINE}/ipks" # To set the remote feeds IPK_FEED_URIS += " \ From 411de3f8403d30d2009c804ada0b34f29e315399 Mon Sep 17 00:00:00 2001 From: mselva006c Date: Sat, 25 Oct 2025 01:36:32 +0000 Subject: [PATCH 09/18] RDKE-893: Update changelog for Rel 4.9.0 Signed-off-by: mselva006c --- CHANGELOG.md | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 57 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a62d30a..0561745 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,68 @@ 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). -#### [4.8.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.2...4.8.0) +#### [4.9.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.8.0...4.9.0) + +- RDKE-893: Update Release note for 4.9.0 [`#66`](https://github.com/rdkcentral/meta-oss-reference-release/pull/66) +- RDKOSS-490: Move OSS_LAYER_VERSION to reference layer [`#59`](https://github.com/rdkcentral/meta-oss-reference-release/pull/59) +- Deploy cla action [`#39`](https://github.com/rdkcentral/meta-oss-reference-release/pull/39) +- Merge tag '4.8.0' into develop [`3abcfc7`](https://github.com/rdkcentral/meta-oss-reference-release/commit/3abcfc717b6b7b646c6844da89633ead14cb1fdd) + +#### [4.8.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.7...4.8.0) + +> 10 August 2025 - RDKOSS-420: Support for REL_OSS_LAYER_ARCH and OSS_LAYER_ARCH [`#43`](https://github.com/rdkcentral/meta-oss-reference-release/pull/43) - RDKE-849: Update Release version [`be3ffce`](https://github.com/rdkcentral/meta-oss-reference-release/commit/be3ffce9c50c6f4973d10bc42db78cf08da83961) +- RDKE-849: Update change log for Rel 4.8.0 [`00b7e8e`](https://github.com/rdkcentral/meta-oss-reference-release/commit/00b7e8e20c32c478b9d0a85b17c29d9116c70a8c) - Merge tag '4.7.0' into develop [`89c0990`](https://github.com/rdkcentral/meta-oss-reference-release/commit/89c0990632c359e8ae3fa62d5880e655a4ee83e3) +#### [4.7.7](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.6...4.7.7) + +> 3 October 2025 + +- RDKE-942: Updated release note for 4.7.7 [`35539bd`](https://github.com/rdkcentral/meta-oss-reference-release/commit/35539bd9a810a174372f01a661afcf0885c98fe1) +- RDKE-942: Update changelog for Rel 4.7.7 [`c41d99c`](https://github.com/rdkcentral/meta-oss-reference-release/commit/c41d99c4b4bbcd3ca25b334394b05a41baa11bcb) +- RDKOSS-490: Move OSS_LAYER_VERSION to reference layer [`8c11a63`](https://github.com/rdkcentral/meta-oss-reference-release/commit/8c11a634b92da74939c38658acfffedeca6bf740) + +#### [4.7.6](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.5...4.7.6) + +> 23 September 2025 + +- RDKE-932: OSS hotfix release 4.7.6 [`b5f49ca`](https://github.com/rdkcentral/meta-oss-reference-release/commit/b5f49ca768ebd5a1cfa13e9ac63f24e36754be06) +- RDKE-932: Update Change log for Rel 4.7.6 [`2861d0d`](https://github.com/rdkcentral/meta-oss-reference-release/commit/2861d0d41aa9159cdb365d2735fc902f823290c7) +- RDKE-932: Fixed the ipk feed url [`0237877`](https://github.com/rdkcentral/meta-oss-reference-release/commit/023787759a944dbd36ba580bb5df6815d01ac6a3) + +#### [4.7.5](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.4...4.7.5) + +> 17 September 2025 + +- RDKE-925: OSS Release 4.7.5 [`7eb31dd`](https://github.com/rdkcentral/meta-oss-reference-release/commit/7eb31dda4ec91c183f8f47a727d39e54ac9f77ac) +- RDKE-925: Update Changelog for Rel 4.7.5 [`ddfea5d`](https://github.com/rdkcentral/meta-oss-reference-release/commit/ddfea5d8a8bc8373a65ef414a1203d4fb54d3674) + +#### [4.7.4](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.4-community...4.7.4) + +> 10 September 2025 + +- RDKE-881: OSS hotfix release 4.7.1 [`b370310`](https://github.com/rdkcentral/meta-oss-reference-release/commit/b370310651d6dcfe2eb07a56231c765d679bdd69) +- RDKE-905: Update ipk feed for Rel 4.7.4 [`aa6b03f`](https://github.com/rdkcentral/meta-oss-reference-release/commit/aa6b03f6cf6226a0d1296da477d9bbc4c9473f5e) +- RDKE-896: Update Release note for 4.7.3 [`6c13c5e`](https://github.com/rdkcentral/meta-oss-reference-release/commit/6c13c5e859a387a009be41ce1202a953038396ad) + +#### [4.7.4-community](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.3...4.7.4-community) + +> 3 September 2025 + +- 4.7.4-community changelog [`e2b02bf`](https://github.com/rdkcentral/meta-oss-reference-release/commit/e2b02bfc8c0c92b0e78e458a0231bab397d7073f) +- RDKEOSS-3 fix meta-rdk-auxilary and meta-rdk-oss-reference versions [`0485e7e`](https://github.com/rdkcentral/meta-oss-reference-release/commit/0485e7e824323179570e669cd439a5fe98774670) +- set OSS vendor to 4.7.4-community [`9ce038e`](https://github.com/rdkcentral/meta-oss-reference-release/commit/9ce038e4fc49584161c83d5636ad3f1f746e4d20) + +#### [4.7.3](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.2...4.7.3) + +> 22 August 2025 + +- RDKE-896: Update Release note for 4.7.3 [`6c13c5e`](https://github.com/rdkcentral/meta-oss-reference-release/commit/6c13c5e859a387a009be41ce1202a953038396ad) +- RDKE-896: Update change log for rel 4.7.3 [`98b512e`](https://github.com/rdkcentral/meta-oss-reference-release/commit/98b512ed4bf9176c6b1ee8f49a39184d61a0b61b) + #### [4.7.2](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.1...4.7.2) > 29 July 2025 From 3e1df048b541f2c3f77718e0ab46386e6d1f71ef Mon Sep 17 00:00:00 2001 From: Stephen Barrett Date: Wed, 12 Nov 2025 19:14:51 +0000 Subject: [PATCH 10/18] Update CODEOWNERS --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 644f92d..2f4dcd8 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -2,4 +2,4 @@ # the repo. Unless a later match takes precedence, # @global-owner1 and @global-owner2 will be requested for # review when someone opens a pull request. -* @rdkcentral/rdke_ghec_meta_oss_maintainer @rdkcentral/rdke_ghec_meta_oss_admin +* @rdkcentral/rdke_ghec_meta_oss_admin From 01911972f7a9063942ea8e180d4c05152232e397 Mon Sep 17 00:00:00 2001 From: mselva006c Date: Tue, 25 Nov 2025 02:57:22 +0000 Subject: [PATCH 11/18] RDKE-899: Update changelog for Rel 4.10.0 Signed-off-by: mselva006c --- CHANGELOG.md | 19 +++- README.md | 312 +++++++++++++++++++++++++-------------------------- 2 files changed, 174 insertions(+), 157 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0561745..821a25e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,14 +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). +#### [4.10.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.9.0...4.10.0) + +- RDKCOM-5437, RDKDEV-1130: Weak assigment of REL_OSS_IPK_SERVER_PATH [`#47`](https://github.com/rdkcentral/meta-oss-reference-release/pull/47) +- Update CODEOWNERS [`#73`](https://github.com/rdkcentral/meta-oss-reference-release/pull/73) +- Merge tag '4.9.0' into develop [`6f9d2df`](https://github.com/rdkcentral/meta-oss-reference-release/commit/6f9d2df82f9cfaf5cab200bb39b2a63c77259cec) +- RDKDEV-1130: Weak assigment of REL_OSS_IPK_SERVER_PATH [`6109869`](https://github.com/rdkcentral/meta-oss-reference-release/commit/6109869e439fc23150954e0a37d0bfc6f381ab69) + #### [4.9.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.8.0...4.9.0) +> 25 October 2025 + - RDKE-893: Update Release note for 4.9.0 [`#66`](https://github.com/rdkcentral/meta-oss-reference-release/pull/66) - RDKOSS-490: Move OSS_LAYER_VERSION to reference layer [`#59`](https://github.com/rdkcentral/meta-oss-reference-release/pull/59) - Deploy cla action [`#39`](https://github.com/rdkcentral/meta-oss-reference-release/pull/39) +- RDKE-893: Update changelog for Rel 4.9.0 [`411de3f`](https://github.com/rdkcentral/meta-oss-reference-release/commit/411de3f8403d30d2009c804ada0b34f29e315399) - Merge tag '4.8.0' into develop [`3abcfc7`](https://github.com/rdkcentral/meta-oss-reference-release/commit/3abcfc717b6b7b646c6844da89633ead14cb1fdd) -#### [4.8.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.7...4.8.0) +#### [4.8.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.9...4.8.0) > 10 August 2025 @@ -20,6 +30,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - RDKE-849: Update change log for Rel 4.8.0 [`00b7e8e`](https://github.com/rdkcentral/meta-oss-reference-release/commit/00b7e8e20c32c478b9d0a85b17c29d9116c70a8c) - Merge tag '4.7.0' into develop [`89c0990`](https://github.com/rdkcentral/meta-oss-reference-release/commit/89c0990632c359e8ae3fa62d5880e655a4ee83e3) +#### [4.7.9](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.7...4.7.9) + +> 7 November 2025 + +- RDKE-956: Update Release note for 4.7.9 [`bed42a7`](https://github.com/rdkcentral/meta-oss-reference-release/commit/bed42a7d6711b65e0386934c874926d971c2156c) +- RDKE-956: Update Changelog for Rel 4.7.9 [`1a21b67`](https://github.com/rdkcentral/meta-oss-reference-release/commit/1a21b67d1de69b9c07400cc54e87a5a0377e616e) + #### [4.7.7](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.6...4.7.7) > 3 October 2025 diff --git a/README.md b/README.md index 58e85ba..63f4881 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,12 @@ RDKE OSS Layer Release Notes |---|----| |Classification|Public| |Document Version|Issue 1| -|Date|24th October 2025| +|Date|24th November 2025| |Author|RDKE Platform & Tools Team| | Components | Tag | |----------|--------| -| packagegroup-oss-layer | 4.9.0-r0| +| packagegroup-oss-layer | 4.10.0-r0| @@ -36,7 +36,7 @@ Unified OSS Layer - The components of the OSS (Open Source Software) layer, incl This release will provide a versioned `"meta-oss-reference-release"` that will be used by other stack layes to resolve build and runtime dependencies. -The 4.9.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: +The 4.10.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: 1. rdk-arm7a-oss: Default tuning is set to armv7athf-neon. 2. rdk-arm7ve-oss: Default tuning is set to armv7vethf-neon. 3. rdk-arm64-oss: 64-bit ARM architecture with a multilib configuration and default tuning set to armv7vethf-neon for compatibility with 32-bit systems. @@ -47,18 +47,17 @@ The IPK feed is automatically chosen based on the platform's default tuning conf ### OSS stack layer | Layer | Tag | |------|------| -|meta-rdk-auxiliary|1.6.0| -|meta-rdk-oss-reference|4.9.0| +|meta-rdk-auxiliary|1.7.0| +|meta-rdk-oss-reference|4.10.0| |meta-openembedded|rdk-4.0.0| -|poky|rdk-4.4.1| +|poky|rdk-4.5.0| |meta-python2|rdk-4.0.0| -|meta-rdk-oss-ext|1.5.0| +|meta-rdk-oss-ext|1.6.0| |meta-virtualization|rdk-4.0.0| |meta-clang|rdk-4.0.0| |meta-lts-mixins|rdk-4.0.0| ### Components details in "packagegroup-oss-layer" - |#|OSS layer Component|(=version)| |-|----------------------|---------| |1| abseil-cpp | (20211102.0+git0+7c6608d0db-r1) | @@ -181,7 +180,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |118| libidn2 | (2.3.2-r0) | |119| libinput | (1.19.4-r0) | |120| libjpeg | (62.3.0-r0) | -|121| libmanette | (0.2.6-r1) | +|121| libmanette | (0.2.6-r3) | |122| libmd | (1.0.4-r0) | |123| libmicrohttpd | (0.9.76-r0) | |124| libmng | (2.0.3-r0) | @@ -196,152 +195,153 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |133| libol | (0.3.18-r0) | |134| libomxil | (0.9.3-r1) | |135| libopus | (1.3.1-r0) | -|136| libpam | (1.5.2-r0) | -|137| libpcap | (1.10.1-r1) | -|138| libpciaccess | (0.16-r0) | -|139| libpcre2 | (10.40-r0) | -|140| libpcre | (8.39-r0) | -|141| libpng | (1.6.39-r0) | -|142| libpsl | (0.21.1-r0) | -|143| libpthread-stubs | (0.4-r0) | -|144| libsamplerate0 | (0.2.2-r1) | -|145| libsdl | (1.2.15-r3) | -|146| libsdl-image | (1.2.12-r0) | -|147| libsdl-ttf | (2.0.11-r0) | -|148| libseccomp | (2.4.3-r1) | -|149| libsndfile1 | (1.0.31-r0) | -|150| libsolv | (0.7.22-r0) | -|151| libsoup-2.4 | (2.74.2-r1) | -|152| libsoup | (3.6.5-r1) | -|153| libstd-rs | (1.82.0-r0) | -|154| libtasn1 | (4.13-r1) | -|155| libtheora | (1.1.1-r1) | -|156| libtinyxml | (2.6.2-r5) | -|157| libtinyxml2 | (9.0.0-r0) | -|158| libtirpc | (1.3.2-r0) | -|159| libtool | (2.4.7-r0) | -|160| libunistring | (1.0-r0) | -|161| libunwind | (1.7.0-r0) | -|162| liburcu | (0.13.2-r0) | -|163| libusb1 | (1.0.27-r0) | -|164| libuv | (1.44.2-r0) | -|165| libvorbis | (1.3.7-r0) | -|166| libvpx | (1.12.0-r1) | -|167| libwebp | (1.3.2-r0) | -|168| libwebsockets | (4.2.2-r0) | -|169| libxcrypt | (4.4.33-r0) | -|170| libxkbcommon | (0.5.0-r0) | -|171| libxml2 | (2.9.14-r1) | -|172| libxslt | (1.1.35-r0) | -|173| libzip | (1.8.0-r0) | -|174| lighttpd | (1.4.53-r3) | -|175| linenoise | (1.0.0+git0+97d2850af1-r1) | -|176| linux-libc-headers | (4.9-r2) | -|177| log4c | (1.2.3-r0) | -|178| logrotate | (3.21.0-r2) | -|179| lsof | (4.94.0-r0) | -|180| lttng-ust | (2.13.6-r0) | -|181| lua | (5.4.4-r0) | -|182| lvm2 | (2.03.11-r0) | -|183| lz4 | (1.9.4-r0) | -|184| lzo | (2.10-r0) | -|185| m4 | (1.4.9-r2) | -|186| mbedtls | (2.16.3-r0) | -|187| mdns | (1556.80.2-r0) | -|188| minizip | (1.0.0+git0+71ef99f6a0-r0) | -|189| mongoose | (2.6-r0) | -|190| mosquitto | (2.0.18-r0) | -|191| msgpack-c | (4.0.0+git0+a9a48cea3a-r0) | -|192| mtdev | (1.1.6-r0) | -|193| mtd-utils | (2.1.5-r2) | -|194| nanomsg | (1.1.5-r0) | -|195| ncurses | (6.3+20220423-r1) | -|196| ndisc6 | (1.0.6-r0) | -|197| ne10 | (1.2.1gitr+0+18c4c982a5-r0) | -|198| nettle | (2.7.1-r1) | -|199| networkmanager | (1.43.7-r11) | -|200| nghttp2 | (1.48.0-r1) | -|201| nopoll | (0.3.2.b232-r0) | -|202| nspr | (4.29-r0) | -|203| nss | (3.74-r2) | -|204| openjpeg | (2.4.0-r0) | -|205| openssh | (8.9p1-r0) | -|206| openssl-1.1.1l | (1.1.1l-r0) | -|207| openssl | (3.0.15-r0) | -|208| opkg | (0.5.0-r1) | -|209| opkg-arch-config | (1.0-r1) | -|210| opkg-utils | (0.5.0-r1) | -|211| orc | (0.4.31-r0) | -|212| packagegroup-oss-layer | (4.9.0-r0) | -|213| paho-mqtt-c | (1.3.10-r0) | -|214| perl | (5.34.3-r0) | -|215| pixman | (0.40.0-r0) | -|216| popt | (1.18-r0) | -|217| procps | (3.3.17-r1) | -|218| protobuf | (3.19.6-r0) | -|219| protobuf-c | (1.4.1-r0) | -|220| python | (2.7.18-r0) | -|221| python3 | (3.10.15-r1) | -|222| python3-dbus | (1.2.18-r0) | -|223| qrencode | (4.1.1-r0) | -|224| rapidjson | (1.1.0+git0+0ccdbf364c-r0) | -|225| rdkperf | (1.0.0+git0+d802d561c4-r0) | -|226| rdm | (1.0.1-r1) | -|227| re2 | (2020.11.01-r0) | -|228| readline | (5.2-r9) | -|229| redis | (7.0.13-r1) | -|230| run-postinsts | (1.0-r10) | -|231| safec | (3.7.1-r0) | -|232| safec-common-wrapper | (1.0-r0) | -|233| sbc | (1.5-r0) | -|234| sed | (4.1.2-r0) | -|235| shadow | (4.11.1-r0) | -|236| shadow-securetty | (4.6-r3) | -|237| shared-mime-info | (2.1-r0) | -|238| slang | (2.3.2-r0) | -|239| smcroute | (2.4.4-r0) | -|240| speex | (1.2.0-r0) | -|241| speexdsp | (1.2.0-r0) | -|242| sqlite | (2.8.17-r7) | -|243| sqlite3 | (3.38.5-r1) | -|244| strace | (5.16-r0) | -|245| stunnel | (5.65-r2) | -|246| sysfsutils | (2.1.0-r6) | -|247| syslog-ng | (3.36.1-r3) | -|248| systemd | (230+git0+3a74d4fc90-r13) | -|249| systemd-serialgetty | (1.0.0-r5) | -|250| taglib | (1.12-r0) | -|251| tcpdump | (4.99.4-r0) | -|252| tcp-wrappers | (7.6-r10) | -|253| tiff | (4.3.0-r0) | -|254| trace-cmd | (2.9.1-r0) | -|255| tremor | (20180319-r0) | -|256| trower-base64 | (1.0-r0) | -|257| tzdata | (2024a-r1) | -|258| udev-extraconf | (1.1-r1) | -|259| unzip | (6.0-r5) | -|260| update-rc.d | (0.8-r0) | -|261| util-linux | (2.37.4-r3) | -|262| util-linux-libuuid | (2.37.4-r0) | -|263| util-macros | (1.19.3-r0) | -|264| vala | (0.56.3-r0) | -|265| vmtouch | (1.3.1-r0) | -|266| wayland | (1.20.0-r0) | -|267| wayland-default-egl | (1.20.0-r0) | -|268| wayland-protocols | (1.25-r1) | -|269| websocketpp | (0.8.2-r0) | -|270| wireless-regdb | (2024.07.04-r0) | -|271| wireless-tools | (30.pre9-r0) | -|272| woff2 | (1.0.2-r0) | -|273| wpa-supplicant | (2.10-r7) | -|274| xkeyboard-config | (2.35.1-r0) | -|275| xmlsec1 | (1.2.33-r1) | -|276| xz | (5.2.6-r0) | -|277| yajl | (2.1.0-r0) | -|278| zlib | (1.2.11-r0) | -|279| zstd | (1.5.2-r0) | +|136| libp11 | (0.4.16-r0) | +|137| libpam | (1.5.2-r0) | +|138| libpcap | (1.10.1-r1) | +|139| libpciaccess | (0.16-r0) | +|140| libpcre2 | (10.40-r0) | +|141| libpcre | (8.39-r0) | +|142| libpng | (1.6.39-r0) | +|143| libpsl | (0.21.1-r0) | +|144| libpthread-stubs | (0.4-r0) | +|145| libsamplerate0 | (0.2.2-r1) | +|146| libsdl | (1.2.15-r3) | +|147| libsdl-image | (1.2.12-r0) | +|148| libsdl-ttf | (2.0.11-r0) | +|149| libseccomp | (2.4.3-r1) | +|150| libsndfile1 | (1.0.31-r0) | +|151| libsolv | (0.7.22-r0) | +|152| libsoup-2.4 | (2.74.2-r1) | +|153| libsoup | (3.6.5-r1) | +|154| libstd-rs | (1.82.0-r0) | +|155| libtasn1 | (4.13-r1) | +|156| libtheora | (1.1.1-r1) | +|157| libtinyxml | (2.6.2-r5) | +|158| libtinyxml2 | (9.0.0-r0) | +|159| libtirpc | (1.3.2-r0) | +|160| libtool | (2.4.7-r0) | +|161| libunistring | (1.0-r0) | +|162| libunwind | (1.7.0-r0) | +|163| liburcu | (0.13.2-r0) | +|164| libusb1 | (1.0.27-r0) | +|165| libuv | (1.44.2-r0) | +|166| libvorbis | (1.3.7-r0) | +|167| libvpx | (1.12.0-r1) | +|168| libwebp | (1.3.2-r0) | +|169| libwebsockets | (4.2.2-r0) | +|170| libxcrypt | (4.4.33-r0) | +|171| libxkbcommon | (0.5.0-r0) | +|172| libxml2 | (2.9.14-r1) | +|173| libxslt | (1.1.35-r0) | +|174| libzip | (1.8.0-r0) | +|175| lighttpd | (1.4.53-r3) | +|176| linenoise | (1.0.0+git0+97d2850af1-r1) | +|177| linux-libc-headers | (4.9-r2) | +|178| log4c | (1.2.3-r0) | +|179| logrotate | (3.21.0-r2) | +|180| lsof | (4.94.0-r0) | +|181| lttng-ust | (2.13.6-r0) | +|182| lua | (5.4.4-r0) | +|183| lvm2 | (2.03.11-r0) | +|184| lz4 | (1.9.4-r0) | +|185| lzo | (2.10-r0) | +|186| m4 | (1.4.9-r2) | +|187| mbedtls | (2.16.3-r0) | +|188| mdns | (1556.80.2-r0) | +|189| minizip | (1.0.0+git0+71ef99f6a0-r0) | +|190| mongoose | (2.6-r0) | +|191| mosquitto | (2.0.18-r0) | +|192| msgpack-c | (4.0.0+git0+a9a48cea3a-r0) | +|193| mtdev | (1.1.6-r0) | +|194| mtd-utils | (2.1.5-r2) | +|195| nanomsg | (1.1.5-r0) | +|196| ncurses | (6.3+20220423-r1) | +|197| ndisc6 | (1.0.6-r0) | +|198| ne10 | (1.2.1gitr+0+18c4c982a5-r0) | +|199| nettle | (2.7.1-r1) | +|200| networkmanager | (1.43.7-r11) | +|201| nghttp2 | (1.48.0-r1) | +|202| nopoll | (0.3.2.b232-r0) | +|203| nspr | (4.29-r0) | +|204| nss | (3.74-r2) | +|205| openjpeg | (2.4.0-r0) | +|206| openssh | (8.9p1-r0) | +|207| openssl-1.1.1l | (1.1.1l-r0) | +|208| openssl | (3.0.15-r1) | +|209| opkg | (0.5.0-r2) | +|210| opkg-arch-config | (1.0-r1) | +|211| opkg-utils | (0.5.0-r1) | +|212| orc | (0.4.31-r0) | +|213| packagegroup-oss-layer | (4.10.0-r0) | +|214| paho-mqtt-c | (1.3.10-r0) | +|215| perl | (5.34.3-r0) | +|216| pixman | (0.40.0-r0) | +|217| popt | (1.18-r0) | +|218| procps | (3.3.17-r1) | +|219| protobuf | (3.19.6-r0) | +|220| protobuf-c | (1.4.1-r0) | +|221| python | (2.7.18-r0) | +|222| python3 | (3.10.15-r1) | +|223| python3-dbus | (1.2.18-r0) | +|224| qrencode | (4.1.1-r0) | +|225| rapidjson | (1.1.0+git0+0ccdbf364c-r0) | +|226| rdkperf | (1.0.0+git0+d802d561c4-r0) | +|227| rdm | (1.0.1-r1) | +|228| re2 | (2020.11.01-r0) | +|229| readline | (5.2-r9) | +|230| redis | (7.0.13-r1) | +|231| run-postinsts | (1.0-r10) | +|232| safec | (3.7.1-r0) | +|233| safec-common-wrapper | (1.0-r0) | +|234| sbc | (1.5-r0) | +|235| sed | (4.1.2-r0) | +|236| shadow | (4.11.1-r0) | +|237| shadow-securetty | (4.6-r3) | +|238| shared-mime-info | (2.1-r0) | +|239| slang | (2.3.2-r0) | +|240| smcroute | (2.4.4-r0) | +|241| speex | (1.2.0-r0) | +|242| speexdsp | (1.2.0-r0) | +|243| sqlite | (2.8.17-r7) | +|244| sqlite3 | (3.38.5-r1) | +|245| strace | (5.16-r0) | +|246| stunnel | (5.65-r2) | +|247| sysfsutils | (2.1.0-r6) | +|248| syslog-ng | (3.36.1-r3) | +|249| systemd | (230+git0+3a74d4fc90-r13) | +|250| systemd-serialgetty | (1.0.0-r5) | +|251| taglib | (1.12-r0) | +|252| tcpdump | (4.99.4-r0) | +|253| tcp-wrappers | (7.6-r10) | +|254| tiff | (4.3.0-r0) | +|255| trace-cmd | (2.9.1-r0) | +|256| tremor | (20180319-r0) | +|257| trower-base64 | (1.0-r0) | +|258| tzdata | (2024a-r1) | +|259| udev-extraconf | (1.1-r1) | +|260| unzip | (6.0-r5) | +|261| update-rc.d | (0.8-r0) | +|262| util-linux | (2.37.4-r3) | +|263| util-linux-libuuid | (2.37.4-r0) | +|264| util-macros | (1.19.3-r0) | +|265| vala | (0.56.3-r0) | +|266| vmtouch | (1.3.1-r0) | +|267| wayland | (1.20.0-r0) | +|268| wayland-default-egl | (1.20.0-r0) | +|269| wayland-protocols | (1.25-r1) | +|270| websocketpp | (0.8.2-r0) | +|271| wireless-regdb | (2024.07.04-r0) | +|272| wireless-tools | (30.pre9-r0) | +|273| woff2 | (1.0.2-r0) | +|274| wpa-supplicant | (2.10-r8) | +|275| xkeyboard-config | (2.35.1-r0) | +|276| xmlsec1 | (1.2.33-r1) | +|277| xz | (5.2.6-r0) | +|278| yajl | (2.1.0-r1) | +|279| zlib | (1.2.11-r0) | +|280| zstd | (1.5.2-r0) | ### Diff report of the meta layers contributing to this release of OSS layer project is available at below links -- [ ] meta-oss-common-config [1.3.0-->1.3.1] (https://github.com/rdkcentral/meta-oss-common-config/compare/1.3.0...1.3.1) -- [ ] meta-rdk-auxiliary [1.5.0-->1.6.0] (https://github.com/rdkcentral/meta-rdk-auxiliary/compare/1.5.0...1.6.0) -- [ ] meta-rdk-oss-reference [4.8.0-->4.9.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.8.0...4.9.0) +- [ ] meta-rdk-auxiliary [1.6.0-->1.7.0] (https://github.com/rdkcentral/meta-rdk-auxiliary/compare/1.6.0...1.7.0) +- [ ] meta-rdk-oss-reference [4.9.0-->4.10.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.9.0...4.10.0) +- [ ] poky [rdk-4.4.1-->rdk-4.5.0] (https://github.com/rdkcentral/poky/compare/rdk-4.4.1...rdk-4.5.0) From 174e68cca7a71f2ca8867678ce102d7048dc2ccd Mon Sep 17 00:00:00 2001 From: mselva006c Date: Sun, 1 Mar 2026 04:46:33 +0000 Subject: [PATCH 12/18] RDKE-971: Update release notes for 4.11.0 Signed-off-by: mselva006c --- README.md | 174 +++++++++++++++++------------------ conf/machine/include/oss.inc | 13 +++ 2 files changed, 100 insertions(+), 87 deletions(-) diff --git a/README.md b/README.md index 63f4881..0cb6c43 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,12 @@ RDKE OSS Layer Release Notes |---|----| |Classification|Public| |Document Version|Issue 1| -|Date|24th November 2025| +|Date|28th February 2026| |Author|RDKE Platform & Tools Team| | Components | Tag | |----------|--------| -| packagegroup-oss-layer | 4.10.0-r0| +| packagegroup-oss-layer | 4.11.0-r0| @@ -36,7 +36,7 @@ Unified OSS Layer - The components of the OSS (Open Source Software) layer, incl This release will provide a versioned `"meta-oss-reference-release"` that will be used by other stack layes to resolve build and runtime dependencies. -The 4.10.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: +The 4.11.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: 1. rdk-arm7a-oss: Default tuning is set to armv7athf-neon. 2. rdk-arm7ve-oss: Default tuning is set to armv7vethf-neon. 3. rdk-arm64-oss: 64-bit ARM architecture with a multilib configuration and default tuning set to armv7vethf-neon for compatibility with 32-bit systems. @@ -47,14 +47,14 @@ The IPK feed is automatically chosen based on the platform's default tuning conf ### OSS stack layer | Layer | Tag | |------|------| -|meta-rdk-auxiliary|1.7.0| -|meta-rdk-oss-reference|4.10.0| +|meta-rdk-auxiliary|1.8.0| +|meta-rdk-oss-reference|4.11.0| |meta-openembedded|rdk-4.0.0| -|poky|rdk-4.5.0| +|poky|rdk-4.6.0| |meta-python2|rdk-4.0.0| -|meta-rdk-oss-ext|1.6.0| +|meta-rdk-oss-ext|1.7.0| |meta-virtualization|rdk-4.0.0| -|meta-clang|rdk-4.0.0| +|meta-clang|rdk-4.1.0| |meta-lts-mixins|rdk-4.0.0| ### Components details in "packagegroup-oss-layer" @@ -62,13 +62,13 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |-|----------------------|---------| |1| abseil-cpp | (20211102.0+git0+7c6608d0db-r1) | |2| acl | (2.3.1-r0) | -|3| alsa-lib | (1.2.6.1-r0) | +|3| alsa-lib | (1.2.6.1-r1) | |4| alsa-state | (0.2.0-r5) | |5| alsa-topology-conf | (1.2.5.1-r0) | |6| alsa-ucm-conf | (1.2.6.3-r0) | |7| alsa-utils | (1.2.6-r0) | |8| alsa-utils-scripts | (1.2.6-r0) | -|9| apparmor | (3.1.7-r0) | +|9| apparmor | (3.1.7-r1) | |10| atk | (2.38.0-r0) | |11| attr | (2.5.1-r0) | |12| autoconf-archive | (2022.02.11-r0) | @@ -82,7 +82,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |20| breakpad | (1.0-r1) | |21| breakpad-wrapper | (1.0.0-r0) | |22| brotli | (1.0.9-r0) | -|23| busybox | (1.35.0-r1) | +|23| busybox | (1.35.0-r2) | |24| bzip2 | (1.0.8-r0) | |25| ca-certificates | (20211016-r2) | |26| c-ares | (1.18.1-r0) | @@ -93,12 +93,12 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |31| crun | (1.7.2-r0) | |32| ctemplate | (1.0.0+git0+4b7e6c52dc-r4) | |33| cunit | (2.1-3-r0) | -|34| curl | (7.82.0-r1) | +|34| curl | (7.82.0-r2) | |35| db | (5.3.28-r1) | |36| dbus | (1.14.8-r1) | |37| dbus-glib | (0.112-r0) | |38| dibbler | (1.0.1+1.0.2RC1+gita7c6cf58a88a510cb00841351e75030ce78d36bf-r1) | -|39| dnsmasq | (2.90-r4) | +|39| dnsmasq | (2.90-r5) | |40| dosfstools | (2.11-r0) | |41| e2fsprogs | (1.46.5-r0) | |42| ebtables | (2.0.11-r4) | @@ -107,7 +107,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |45| evtest | (1.34-r0) | |46| expat | (2.5.0-r0) | |47| fcgi | (2.4.2-r1) | -|48| file | (5.41-r0) | +|48| file | (5.41-r1) | |49| findutils | (4.2.31-r0) | |50| flac | (1.3.4-r0) | |51| flex | (2.6.4-r0) | @@ -115,7 +115,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |53| fontconfig | (2.13.1-r0) | |54| freetype | (2.11.1-r1) | |55| fribidi | (1.0.13-r0) | -|56| gawk | (3.1.5-r2) | +|56| gawk | (3.1.5-r4) | |57| gcc-runtime | (11.3.0-r0) | |58| gcc-sanitizers | (11.3.0-r0) | |59| gdbm | (1.8.3-r4) | @@ -127,7 +127,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |65| glibc-locale | (2.35-r0) | |66| glibc-mtrace | (2.35-r0) | |67| glib-networking | (2.72.2-r2) | -|68| gmp | (4.2.1-r0) | +|68| gmp | (4.2.1-r1) | |69| gnutls | (3.3.30-r1) | |70| gobject-introspection | (1.72.0-r0) | |71| googletest | (1.11.0+git0+9e71237221-r0) | @@ -150,18 +150,18 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |88| json-c | (0.15-r0) | |89| jsoncpp | (1.8.4-r0) | |90| jsonrpc | (1.3.0-r0) | -|91| kbd | (2.4.0-r0) | +|91| kbd | (2.4.0-r1) | |92| keyutils | (1.6.1-r0) | |93| kmod | (29-r0) | |94| lcms | (2.13.1-r0) | |95| libaio | (0.3.112-r0) | -|96| libarchive | (3.6.1-r2) | -|97| libatomic-ops | (7.6.14-r0) | +|96| libarchive | (3.6.2-r2) | +|97| libatomic-ops | (7.6.14-r1) | |98| libbsd | (0.11.5-r0) | -|99| libcap | (2.66-r0) | +|99| libcap | (2.66-r1) | |100| libcap-ng | (0.8.2-r0) | |101| libcgroup | (2.0.2-r0) | -|102| libcheck | (0.15.2-r0) | +|102| libcheck | (0.15.2-r1) | |103| libcroco | (0.6.13-r0) | |104| libdaemon | (0.14-r0) | |105| libdash | (1.0.0+git0+f5b5d991af-r1) | @@ -180,7 +180,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |118| libidn2 | (2.3.2-r0) | |119| libinput | (1.19.4-r0) | |120| libjpeg | (62.3.0-r0) | -|121| libmanette | (0.2.6-r3) | +|121| libmanette | (0.2.6-r4) | |122| libmd | (1.0.4-r0) | |123| libmicrohttpd | (0.9.76-r0) | |124| libmng | (2.0.3-r0) | @@ -195,9 +195,9 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |133| libol | (0.3.18-r0) | |134| libomxil | (0.9.3-r1) | |135| libopus | (1.3.1-r0) | -|136| libp11 | (0.4.16-r0) | +|136| libp11 | (0.4.17-r0) | |137| libpam | (1.5.2-r0) | -|138| libpcap | (1.10.1-r1) | +|138| libpcap | (1.10.1-r2) | |139| libpciaccess | (0.16-r0) | |140| libpcre2 | (10.40-r0) | |141| libpcre | (8.39-r0) | @@ -232,7 +232,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |170| libxcrypt | (4.4.33-r0) | |171| libxkbcommon | (0.5.0-r0) | |172| libxml2 | (2.9.14-r1) | -|173| libxslt | (1.1.35-r0) | +|173| libxslt | (1.1.35-r1) | |174| libzip | (1.8.0-r0) | |175| lighttpd | (1.4.53-r3) | |176| linenoise | (1.0.0+git0+97d2850af1-r1) | @@ -243,7 +243,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |181| lttng-ust | (2.13.6-r0) | |182| lua | (5.4.4-r0) | |183| lvm2 | (2.03.11-r0) | -|184| lz4 | (1.9.4-r0) | +|184| lz4 | (1.9.4-r1) | |185| lzo | (2.10-r0) | |186| m4 | (1.4.9-r2) | |187| mbedtls | (2.16.3-r0) | @@ -267,12 +267,12 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |205| openjpeg | (2.4.0-r0) | |206| openssh | (8.9p1-r0) | |207| openssl-1.1.1l | (1.1.1l-r0) | -|208| openssl | (3.0.15-r1) | -|209| opkg | (0.5.0-r2) | +|208| openssl | (3.0.15-r2) | +|209| opkg | (0.5.0-r3) | |210| opkg-arch-config | (1.0-r1) | -|211| opkg-utils | (0.5.0-r1) | +|211| opkg-utils | (0.5.0-r2) | |212| orc | (0.4.31-r0) | -|213| packagegroup-oss-layer | (4.10.0-r0) | +|213| packagegroup-oss-layer | (4.11.0-r0) | |214| paho-mqtt-c | (1.3.10-r0) | |215| perl | (5.34.3-r0) | |216| pixman | (0.40.0-r0) | @@ -286,62 +286,62 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |224| qrencode | (4.1.1-r0) | |225| rapidjson | (1.1.0+git0+0ccdbf364c-r0) | |226| rdkperf | (1.0.0+git0+d802d561c4-r0) | -|227| rdm | (1.0.1-r1) | -|228| re2 | (2020.11.01-r0) | -|229| readline | (5.2-r9) | -|230| redis | (7.0.13-r1) | -|231| run-postinsts | (1.0-r10) | -|232| safec | (3.7.1-r0) | -|233| safec-common-wrapper | (1.0-r0) | -|234| sbc | (1.5-r0) | -|235| sed | (4.1.2-r0) | -|236| shadow | (4.11.1-r0) | -|237| shadow-securetty | (4.6-r3) | -|238| shared-mime-info | (2.1-r0) | -|239| slang | (2.3.2-r0) | -|240| smcroute | (2.4.4-r0) | -|241| speex | (1.2.0-r0) | -|242| speexdsp | (1.2.0-r0) | -|243| sqlite | (2.8.17-r7) | -|244| sqlite3 | (3.38.5-r1) | -|245| strace | (5.16-r0) | -|246| stunnel | (5.65-r2) | -|247| sysfsutils | (2.1.0-r6) | -|248| syslog-ng | (3.36.1-r3) | -|249| systemd | (230+git0+3a74d4fc90-r13) | -|250| systemd-serialgetty | (1.0.0-r5) | -|251| taglib | (1.12-r0) | -|252| tcpdump | (4.99.4-r0) | -|253| tcp-wrappers | (7.6-r10) | -|254| tiff | (4.3.0-r0) | -|255| trace-cmd | (2.9.1-r0) | -|256| tremor | (20180319-r0) | -|257| trower-base64 | (1.0-r0) | -|258| tzdata | (2024a-r1) | -|259| udev-extraconf | (1.1-r1) | -|260| unzip | (6.0-r5) | -|261| update-rc.d | (0.8-r0) | -|262| util-linux | (2.37.4-r3) | -|263| util-linux-libuuid | (2.37.4-r0) | -|264| util-macros | (1.19.3-r0) | -|265| vala | (0.56.3-r0) | -|266| vmtouch | (1.3.1-r0) | -|267| wayland | (1.20.0-r0) | -|268| wayland-default-egl | (1.20.0-r0) | -|269| wayland-protocols | (1.25-r1) | -|270| websocketpp | (0.8.2-r0) | -|271| wireless-regdb | (2024.07.04-r0) | -|272| wireless-tools | (30.pre9-r0) | -|273| woff2 | (1.0.2-r0) | -|274| wpa-supplicant | (2.10-r8) | -|275| xkeyboard-config | (2.35.1-r0) | -|276| xmlsec1 | (1.2.33-r1) | -|277| xz | (5.2.6-r0) | -|278| yajl | (2.1.0-r1) | -|279| zlib | (1.2.11-r0) | -|280| zstd | (1.5.2-r0) | +|227| re2 | (2020.11.01-r0) | +|228| readline | (5.2-r9) | +|229| redis | (7.0.13-r1) | +|230| run-postinsts | (1.0-r10) | +|231| safec | (3.7.1-r0) | +|232| safec-common-wrapper | (1.0-r0) | +|233| sbc | (1.5-r0) | +|234| sed | (4.1.2-r1) | +|235| shadow | (4.11.1-r0) | +|236| shadow-securetty | (4.6-r3) | +|237| shared-mime-info | (2.1-r0) | +|238| slang | (2.3.2-r0) | +|239| smcroute | (2.4.4-r0) | +|240| speex | (1.2.0-r0) | +|241| speexdsp | (1.2.0-r0) | +|242| sqlite | (2.8.17-r7) | +|243| sqlite3 | (3.38.5-r1) | +|244| strace | (5.16-r0) | +|245| stunnel | (5.65-r3) | +|246| sysfsutils | (2.1.0-r6) | +|247| syslog-ng | (3.36.1-r3) | +|248| systemd | (230+git0+3a74d4fc90-r13) | +|249| systemd-serialgetty | (1.0.0-r5) | +|250| taglib | (1.12-r0) | +|251| tcpdump | (4.99.4-r0) | +|252| tcp-wrappers | (7.6-r10) | +|253| tiff | (4.3.0-r0) | +|254| trace-cmd | (2.9.1-r0) | +|255| tremor | (20180319-r0) | +|256| trower-base64 | (1.0-r0) | +|257| tzdata | (2024a-r1) | +|258| udev-extraconf | (1.1-r1) | +|259| unzip | (6.0-r5) | +|260| update-rc.d | (0.8-r0) | +|261| util-linux | (2.37.4-r3) | +|262| util-linux-libuuid | (2.37.4-r0) | +|263| util-macros | (1.19.3-r0) | +|264| vala | (0.56.3-r0) | +|265| vmtouch | (1.3.1-r0) | +|266| wayland | (1.20.0-r0) | +|267| wayland-default-egl | (1.20.0-r0) | +|268| wayland-protocols | (1.25-r1) | +|269| websocketpp | (0.8.2-r0) | +|270| wireless-regdb | (2024.07.04-r0) | +|271| wireless-tools | (30.pre9-r0) | +|272| woff2 | (1.0.2-r0) | +|273| wpa-supplicant | (2.10-r10) | +|274| xkeyboard-config | (2.35.1-r0) | +|275| xmlsec1 | (1.2.33-r1) | +|276| xz | (5.2.6-r1) | +|277| yajl | (2.1.0-r1) | +|278| yaml-cpp | (0.7.0-r0) | +|279| zlib | (1.2.11-r1) | +|280| zstd | (1.5.2-r1) | ### Diff report of the meta layers contributing to this release of OSS layer project is available at below links -- [ ] meta-rdk-auxiliary [1.6.0-->1.7.0] (https://github.com/rdkcentral/meta-rdk-auxiliary/compare/1.6.0...1.7.0) -- [ ] meta-rdk-oss-reference [4.9.0-->4.10.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.9.0...4.10.0) -- [ ] poky [rdk-4.4.1-->rdk-4.5.0] (https://github.com/rdkcentral/poky/compare/rdk-4.4.1...rdk-4.5.0) +- [ ] meta-rdk-auxiliary [1.7.0-->1.8.0] (https://github.com/rdkcentral/meta-rdk-auxiliary/compare/1.7.0...1.8.0) +- [ ] meta-rdk-oss-reference [4.10.0-->4.11.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.10.0...4.11.0) +- [ ] poky [rdk-4.5.0-->rdk-4.6.0] (https://github.com/rdkcentral/poky/compare/rdk-4.5.0...rdk-4.6.0) diff --git a/conf/machine/include/oss.inc b/conf/machine/include/oss.inc index dc98e03..f334615 100644 --- a/conf/machine/include/oss.inc +++ b/conf/machine/include/oss.inc @@ -12,3 +12,16 @@ REL_OSS_IPK_SERVER_PATH ?= "${RDK_ARTIFACTS_BASE_URL}/rdk-oss-rel/${OSS_LAYER_VE # To set the remote feeds IPK_FEED_URIS += " \ ${REL_OSS_LAYER_EXTENSION}##${REL_OSS_IPK_SERVER_PATH} " + +def get_cve_checksum (d): + arch = d.getVar('REL_OSS_LAYER_ARCH') or '' + mapping = { + "rdk-arm7a-oss": "a953297d906bf7311be94d0efd8b9c32c2dd30cd86b400e98d0cc11289532d05", + "rdk-arm7ve-oss": "68ea40be1f0a0bdeb50d358202b246b7fe11552f1e35f858010411de3f30c04d", + "rdk-arm64-oss": "04f29148179c3c56a0662554aa69734414dda880f8b0a0848ec2fe9cd2fe7d69", + } + return mapping.get(arch) + +CVE_FILE_CHECKSUM = "${@get_cve_checksum(d)}" +CVE_LAYER_FEED_PATH += " ${REL_OSS_LAYER_EXTENSION}##${RDK_ARTIFACTS_BASE_URL}/rdk-oss-rel/${OSS_LAYER_VERSION}/${REL_OSS_MACHINE}/tarball/cve/${REL_OSS_LAYER_EXTENSION}.tgz;sha256sum=${CVE_FILE_CHECKSUM}" + From e1b9f99b6d802642afa796ed415a59bbc7db134d Mon Sep 17 00:00:00 2001 From: mselva006c Date: Sun, 1 Mar 2026 17:01:49 +0000 Subject: [PATCH 13/18] RDKE-971: Update Changelog for Rel 4.11.0 Signed-off-by: mselva006c --- CHANGELOG.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 821a25e..e1a2d1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,25 @@ 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). +#### [4.11.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.10.1...4.11.0) + +- RDKE-971: Update release notes for 4.11.0 [`#79`](https://github.com/rdkcentral/meta-oss-reference-release/pull/79) +- Merge tag '4.10.0' into develop [`0ac247d`](https://github.com/rdkcentral/meta-oss-reference-release/commit/0ac247d399f4750c2394b8760997207872c6639b) + +#### [4.10.1](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.10.0...4.10.1) + +> 20 February 2026 + +- RDKE-1031: Update change log for Rel 4.10.1 [`c9f116c`](https://github.com/rdkcentral/meta-oss-reference-release/commit/c9f116cfc38d5b26d52669f5bd70c1144a32cb27) +- RDKE-1031: Update change log for Rel 4.10.1 [`e425cb1`](https://github.com/rdkcentral/meta-oss-reference-release/commit/e425cb17d722dcbd95fc609efb7c9ef2e1bd848d) + #### [4.10.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.9.0...4.10.0) +> 25 November 2025 + - RDKCOM-5437, RDKDEV-1130: Weak assigment of REL_OSS_IPK_SERVER_PATH [`#47`](https://github.com/rdkcentral/meta-oss-reference-release/pull/47) - Update CODEOWNERS [`#73`](https://github.com/rdkcentral/meta-oss-reference-release/pull/73) +- RDKE-899: Update changelog for Rel 4.10.0 [`0191197`](https://github.com/rdkcentral/meta-oss-reference-release/commit/01911972f7a9063942ea8e180d4c05152232e397) - Merge tag '4.9.0' into develop [`6f9d2df`](https://github.com/rdkcentral/meta-oss-reference-release/commit/6f9d2df82f9cfaf5cab200bb39b2a63c77259cec) - RDKDEV-1130: Weak assigment of REL_OSS_IPK_SERVER_PATH [`6109869`](https://github.com/rdkcentral/meta-oss-reference-release/commit/6109869e439fc23150954e0a37d0bfc6f381ab69) @@ -21,7 +36,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - RDKE-893: Update changelog for Rel 4.9.0 [`411de3f`](https://github.com/rdkcentral/meta-oss-reference-release/commit/411de3f8403d30d2009c804ada0b34f29e315399) - Merge tag '4.8.0' into develop [`3abcfc7`](https://github.com/rdkcentral/meta-oss-reference-release/commit/3abcfc717b6b7b646c6844da89633ead14cb1fdd) -#### [4.8.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.9...4.8.0) +#### [4.8.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.10...4.8.0) > 10 August 2025 @@ -30,6 +45,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - RDKE-849: Update change log for Rel 4.8.0 [`00b7e8e`](https://github.com/rdkcentral/meta-oss-reference-release/commit/00b7e8e20c32c478b9d0a85b17c29d9116c70a8c) - Merge tag '4.7.0' into develop [`89c0990`](https://github.com/rdkcentral/meta-oss-reference-release/commit/89c0990632c359e8ae3fa62d5880e655a4ee83e3) +#### [4.7.10](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.9...4.7.10) + +> 23 December 2025 + +- RDKE-997: Release note update for Rel 4.7.10 [`#76`](https://github.com/rdkcentral/meta-oss-reference-release/pull/76) +- RDKE-997: Update changelog for Rel 4.7.10 [`58e86b1`](https://github.com/rdkcentral/meta-oss-reference-release/commit/58e86b11b7dce8629f6ef3f24204b973a1caa95c) + #### [4.7.9](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.7.7...4.7.9) > 7 November 2025 From 29cef43b7a41639167469eea4ca65daff9f6a5df Mon Sep 17 00:00:00 2001 From: mselva006c Date: Mon, 2 Mar 2026 00:44:37 +0000 Subject: [PATCH 14/18] RDKE-971: Updated Release note for 4.12.0 Signed-off-by: mselva006c --- README.md | 14 +++++++------- conf/machine/include/oss.inc | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0cb6c43..bf3814d 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,12 @@ RDKE OSS Layer Release Notes |---|----| |Classification|Public| |Document Version|Issue 1| -|Date|28th February 2026| +|Date|1st March 2026| |Author|RDKE Platform & Tools Team| | Components | Tag | |----------|--------| -| packagegroup-oss-layer | 4.11.0-r0| +| packagegroup-oss-layer | 4.12.0-r0| @@ -36,7 +36,7 @@ Unified OSS Layer - The components of the OSS (Open Source Software) layer, incl This release will provide a versioned `"meta-oss-reference-release"` that will be used by other stack layes to resolve build and runtime dependencies. -The 4.11.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: +The 4.12.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: 1. rdk-arm7a-oss: Default tuning is set to armv7athf-neon. 2. rdk-arm7ve-oss: Default tuning is set to armv7vethf-neon. 3. rdk-arm64-oss: 64-bit ARM architecture with a multilib configuration and default tuning set to armv7vethf-neon for compatibility with 32-bit systems. @@ -48,7 +48,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf | Layer | Tag | |------|------| |meta-rdk-auxiliary|1.8.0| -|meta-rdk-oss-reference|4.11.0| +|meta-rdk-oss-reference|4.12.0| |meta-openembedded|rdk-4.0.0| |poky|rdk-4.6.0| |meta-python2|rdk-4.0.0| @@ -155,7 +155,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |93| kmod | (29-r0) | |94| lcms | (2.13.1-r0) | |95| libaio | (0.3.112-r0) | -|96| libarchive | (3.6.2-r2) | +|96| libarchive | (3.6.1-r2) | |97| libatomic-ops | (7.6.14-r1) | |98| libbsd | (0.11.5-r0) | |99| libcap | (2.66-r1) | @@ -272,7 +272,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |210| opkg-arch-config | (1.0-r1) | |211| opkg-utils | (0.5.0-r2) | |212| orc | (0.4.31-r0) | -|213| packagegroup-oss-layer | (4.11.0-r0) | +|213| packagegroup-oss-layer | (4.12.0-r0) | |214| paho-mqtt-c | (1.3.10-r0) | |215| perl | (5.34.3-r0) | |216| pixman | (0.40.0-r0) | @@ -343,5 +343,5 @@ The IPK feed is automatically chosen based on the platform's default tuning conf ### Diff report of the meta layers contributing to this release of OSS layer project is available at below links - [ ] meta-rdk-auxiliary [1.7.0-->1.8.0] (https://github.com/rdkcentral/meta-rdk-auxiliary/compare/1.7.0...1.8.0) -- [ ] meta-rdk-oss-reference [4.10.0-->4.11.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.10.0...4.11.0) +- [ ] meta-rdk-oss-reference [4.11.0-->4.12.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.11.0...4.12.0) - [ ] poky [rdk-4.5.0-->rdk-4.6.0] (https://github.com/rdkcentral/poky/compare/rdk-4.5.0...rdk-4.6.0) diff --git a/conf/machine/include/oss.inc b/conf/machine/include/oss.inc index f334615..e96ce25 100644 --- a/conf/machine/include/oss.inc +++ b/conf/machine/include/oss.inc @@ -16,9 +16,9 @@ IPK_FEED_URIS += " \ def get_cve_checksum (d): arch = d.getVar('REL_OSS_LAYER_ARCH') or '' mapping = { - "rdk-arm7a-oss": "a953297d906bf7311be94d0efd8b9c32c2dd30cd86b400e98d0cc11289532d05", - "rdk-arm7ve-oss": "68ea40be1f0a0bdeb50d358202b246b7fe11552f1e35f858010411de3f30c04d", - "rdk-arm64-oss": "04f29148179c3c56a0662554aa69734414dda880f8b0a0848ec2fe9cd2fe7d69", + "rdk-arm7a-oss": "fe379211bf571831cb3e4becbc884f0338b2f05b2124dfdb91afb129ec8db478", + "rdk-arm7ve-oss": "68e724e5231fc0dce52037d3cecf1154415f95d4bac223606ef4d1358254df72", + "rdk-arm64-oss": "0db073343ed9c60e748f0534ddb427a887bdffafacc1077739f1dda86362b583", } return mapping.get(arch) From 83ded1759561d7b53a8e46c7439e70ca8c6b525f Mon Sep 17 00:00:00 2001 From: mselva006c Date: Mon, 2 Mar 2026 00:54:06 +0000 Subject: [PATCH 15/18] RDKE-971: Update Changelog for Rel 4.12.0 Signed-off-by: mselva006c --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1a2d1a..055fcb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,17 @@ 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). +#### [4.12.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.11.0...4.12.0) + +- RDKE-971: Updated Release note for 4.12.0 [`#82`](https://github.com/rdkcentral/meta-oss-reference-release/pull/82) +- Merge tag '4.11.0' into develop [`532c056`](https://github.com/rdkcentral/meta-oss-reference-release/commit/532c056219d284121627834cdf90fe36418431ed) + #### [4.11.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.10.1...4.11.0) +> 1 March 2026 + - RDKE-971: Update release notes for 4.11.0 [`#79`](https://github.com/rdkcentral/meta-oss-reference-release/pull/79) +- RDKE-971: Update Changelog for Rel 4.11.0 [`e1b9f99`](https://github.com/rdkcentral/meta-oss-reference-release/commit/e1b9f99b6d802642afa796ed415a59bbc7db134d) - Merge tag '4.10.0' into develop [`0ac247d`](https://github.com/rdkcentral/meta-oss-reference-release/commit/0ac247d399f4750c2394b8760997207872c6639b) #### [4.10.1](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.10.0...4.10.1) From 9e3c5ac2cf7ac911a4899f98754f0354a495f7cb Mon Sep 17 00:00:00 2001 From: Stephen Barrett Date: Thu, 16 Apr 2026 15:13:33 +0100 Subject: [PATCH 16/18] Update CODEOWNERS --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 2f4dcd8..2a3e40a 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -2,4 +2,4 @@ # the repo. Unless a later match takes precedence, # @global-owner1 and @global-owner2 will be requested for # review when someone opens a pull request. -* @rdkcentral/rdke_ghec_meta_oss_admin +* @rdkcentral/oss-meta-maintainers @rdkcentral/oss-meta-reviewers From 7d31f4e8c6931f240e7c1820366b3da015dacc15 Mon Sep 17 00:00:00 2001 From: Arjun-DR <90032581+Arjun-DR@users.noreply.github.com> Date: Thu, 14 May 2026 19:15:23 +0530 Subject: [PATCH 17/18] RDKE-1040: Update release notes for 4.13.0 (#88) Reason for change: Update the README inline with latest release 4.13.0 Signed-off-by: Arjun --- README.md | 445 +++++++++++++++++++++++++++--------------------------- 1 file changed, 223 insertions(+), 222 deletions(-) diff --git a/README.md b/README.md index bf3814d..d3cb6bb 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,12 @@ RDKE OSS Layer Release Notes |---|----| |Classification|Public| |Document Version|Issue 1| -|Date|1st March 2026| -|Author|RDKE Platform & Tools Team| +|Date|15th May 2026| +|Author|RDKE OSS Team| | Components | Tag | |----------|--------| -| packagegroup-oss-layer | 4.12.0-r0| +| packagegroup-oss-layer | 4.13.0-r0| @@ -36,7 +36,7 @@ Unified OSS Layer - The components of the OSS (Open Source Software) layer, incl This release will provide a versioned `"meta-oss-reference-release"` that will be used by other stack layes to resolve build and runtime dependencies. -The 4.12.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: +The 4.13.0 OSS release, based on the kirkstone yocto version, delivers architecture-specific and platform-independent artifacts. Within this release, ARM architecture is accommodated with the following variations: 1. rdk-arm7a-oss: Default tuning is set to armv7athf-neon. 2. rdk-arm7ve-oss: Default tuning is set to armv7vethf-neon. 3. rdk-arm64-oss: 64-bit ARM architecture with a multilib configuration and default tuning set to armv7vethf-neon for compatibility with 32-bit systems. @@ -47,12 +47,12 @@ The IPK feed is automatically chosen based on the platform's default tuning conf ### OSS stack layer | Layer | Tag | |------|------| -|meta-rdk-auxiliary|1.8.0| -|meta-rdk-oss-reference|4.12.0| +|meta-rdk-auxiliary|1.9.0| +|meta-rdk-oss-reference|4.13.0| |meta-openembedded|rdk-4.0.0| -|poky|rdk-4.6.0| +|poky|rdk-4.7.0| |meta-python2|rdk-4.0.0| -|meta-rdk-oss-ext|1.7.0| +|meta-rdk-oss-ext|1.8.0| |meta-virtualization|rdk-4.0.0| |meta-clang|rdk-4.1.0| |meta-lts-mixins|rdk-4.0.0| @@ -82,18 +82,18 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |20| breakpad | (1.0-r1) | |21| breakpad-wrapper | (1.0.0-r0) | |22| brotli | (1.0.9-r0) | -|23| busybox | (1.35.0-r2) | +|23| busybox | (1.35.0-r3) | |24| bzip2 | (1.0.8-r0) | |25| ca-certificates | (20211016-r2) | |26| c-ares | (1.18.1-r0) | |27| civetweb | (1.10+git+0+0f1b43536d-r0) | -|28| cjson | (1.7.18-r0) | +|28| cjson | (1.7.18-r1) | |29| coreutils | (6.9-r0) | |30| cracklib | (2.9.8-r0) | |31| crun | (1.7.2-r0) | |32| ctemplate | (1.0.0+git0+4b7e6c52dc-r4) | |33| cunit | (2.1-3-r0) | -|34| curl | (7.82.0-r2) | +|34| curl | (7.82.0-r3) | |35| db | (5.3.28-r1) | |36| dbus | (1.14.8-r1) | |37| dbus-glib | (0.112-r0) | @@ -112,7 +112,7 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |50| flac | (1.3.4-r0) | |51| flex | (2.6.4-r0) | |52| fmt | (8.1.1-r0) | -|53| fontconfig | (2.13.1-r0) | +|53| fontconfig | (2.13.1-r1) | |54| freetype | (2.11.1-r1) | |55| fribidi | (1.0.13-r0) | |56| gawk | (3.1.5-r4) | @@ -122,11 +122,11 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |60| gdk-pixbuf | (2.42.10-r0) | |61| gettext | (0.16.1-r6) | |62| gflags | (2.2.2-r0) | -|63| glib-2.0 | (2.72.3-r1) | +|63| glib-2.0 | (2.74.6-r0) | |64| glibc | (2.35-r1) | |65| glibc-locale | (2.35-r0) | |66| glibc-mtrace | (2.35-r0) | -|67| glib-networking | (2.72.2-r2) | +|67| glib-networking | (2.74.0-r0) | |68| gmp | (4.2.1-r1) | |69| gnutls | (3.3.30-r1) | |70| gobject-introspection | (1.72.0-r0) | @@ -134,214 +134,215 @@ The IPK feed is automatically chosen based on the platform's default tuning conf |72| graphite2 | (1.3.6-r0) | |73| grpc | (1.46.7-r1) | |74| gssdp | (1.4.0.1-r0) | -|75| gupnp | (0.20.10-r1) | -|76| harfbuzz | (4.0.1-r0) | -|77| heaptrack | (1.5.0-r0) | -|78| hiredis | (1.0.2-r0) | -|79| icu | (70.1-r0) | -|80| initscripts | (1.0-r155) | -|81| init-system-helpers | (1.62-r0) | -|82| iperf3 | (3.14-r0) | -|83| iptables | (1.8.7-r3) | -|84| iso-codes | (4.15.0-r0) | +|75| gssdp16 | (1.6.3-r0) | +|76| gupnp | (0.20.10-r1) | +|77| harfbuzz | (4.0.1-r0) | +|78| heaptrack | (1.5.0-r0) | +|79| hiredis | (1.0.2-r0) | +|80| icu | (70.1-r0) | +|81| initscripts | (1.0-r155) | +|82| init-system-helpers | (1.62-r0) | +|83| iperf3 | (3.14-r0) | +|84| iptables | (1.8.7-r4) | |85| iw | (4.7-r0) | -|86| jansson | (2.13.1-r0) | -|87| jquery | (1.0.0-r3) | -|88| json-c | (0.15-r0) | -|89| jsoncpp | (1.8.4-r0) | -|90| jsonrpc | (1.3.0-r0) | -|91| kbd | (2.4.0-r1) | -|92| keyutils | (1.6.1-r0) | -|93| kmod | (29-r0) | -|94| lcms | (2.13.1-r0) | -|95| libaio | (0.3.112-r0) | -|96| libarchive | (3.6.1-r2) | -|97| libatomic-ops | (7.6.14-r1) | -|98| libbsd | (0.11.5-r0) | -|99| libcap | (2.66-r1) | -|100| libcap-ng | (0.8.2-r0) | -|101| libcgroup | (2.0.2-r0) | -|102| libcheck | (0.15.2-r1) | -|103| libcroco | (0.6.13-r0) | -|104| libdaemon | (0.14-r0) | -|105| libdash | (1.0.0+git0+f5b5d991af-r1) | -|106| libdwarf | (20210528-r0) | -|107| liberation-fonts | (2.1.5-r0) | -|108| libev | (4.33-r0) | -|109| libevdev | (1.12.1-r1) | -|110| libevent | (2.1.12-r0) | -|111| libexif | (0.6.24-r0) | -|112| libffi | (3.4.4-r0) | -|113| libgcc | (11.3.0-r0) | -|114| libgcrypt | (1.9.4-r1) | -|115| libgpg-error | (1.44-r1) | -|116| libgudev | (237-r0) | -|117| libical | (3.0.16-r1) | -|118| libidn2 | (2.3.2-r0) | -|119| libinput | (1.19.4-r0) | -|120| libjpeg | (62.3.0-r0) | -|121| libmanette | (0.2.6-r4) | -|122| libmd | (1.0.4-r0) | -|123| libmicrohttpd | (0.9.76-r0) | -|124| libmng | (2.0.3-r0) | -|125| libmnl | (1.0.4-r0) | -|126| libndp | (1.8-r0) | -|127| libnewt | (0.52.23-r0) | -|128| libnl | (3.5.0-r1) | -|129| libnsl2 | (2.0.0-r0) | -|130| libnss-mdns | (0.15.1-r1) | -|131| liboauth | (1.0.3-r0) | -|132| libogg | (1.3.5-r0) | -|133| libol | (0.3.18-r0) | -|134| libomxil | (0.9.3-r1) | -|135| libopus | (1.3.1-r0) | -|136| libp11 | (0.4.17-r0) | -|137| libpam | (1.5.2-r0) | -|138| libpcap | (1.10.1-r2) | -|139| libpciaccess | (0.16-r0) | -|140| libpcre2 | (10.40-r0) | -|141| libpcre | (8.39-r0) | -|142| libpng | (1.6.39-r0) | -|143| libpsl | (0.21.1-r0) | -|144| libpthread-stubs | (0.4-r0) | -|145| libsamplerate0 | (0.2.2-r1) | -|146| libsdl | (1.2.15-r3) | -|147| libsdl-image | (1.2.12-r0) | -|148| libsdl-ttf | (2.0.11-r0) | -|149| libseccomp | (2.4.3-r1) | -|150| libsndfile1 | (1.0.31-r0) | -|151| libsolv | (0.7.22-r0) | -|152| libsoup-2.4 | (2.74.2-r1) | -|153| libsoup | (3.6.5-r1) | -|154| libstd-rs | (1.82.0-r0) | -|155| libtasn1 | (4.13-r1) | -|156| libtheora | (1.1.1-r1) | -|157| libtinyxml | (2.6.2-r5) | -|158| libtinyxml2 | (9.0.0-r0) | -|159| libtirpc | (1.3.2-r0) | -|160| libtool | (2.4.7-r0) | -|161| libunistring | (1.0-r0) | -|162| libunwind | (1.7.0-r0) | -|163| liburcu | (0.13.2-r0) | -|164| libusb1 | (1.0.27-r0) | -|165| libuv | (1.44.2-r0) | -|166| libvorbis | (1.3.7-r0) | -|167| libvpx | (1.12.0-r1) | -|168| libwebp | (1.3.2-r0) | -|169| libwebsockets | (4.2.2-r0) | -|170| libxcrypt | (4.4.33-r0) | -|171| libxkbcommon | (0.5.0-r0) | -|172| libxml2 | (2.9.14-r1) | -|173| libxslt | (1.1.35-r1) | -|174| libzip | (1.8.0-r0) | -|175| lighttpd | (1.4.53-r3) | -|176| linenoise | (1.0.0+git0+97d2850af1-r1) | -|177| linux-libc-headers | (4.9-r2) | -|178| log4c | (1.2.3-r0) | -|179| logrotate | (3.21.0-r2) | -|180| lsof | (4.94.0-r0) | -|181| lttng-ust | (2.13.6-r0) | -|182| lua | (5.4.4-r0) | -|183| lvm2 | (2.03.11-r0) | -|184| lz4 | (1.9.4-r1) | -|185| lzo | (2.10-r0) | -|186| m4 | (1.4.9-r2) | -|187| mbedtls | (2.16.3-r0) | -|188| mdns | (1556.80.2-r0) | -|189| minizip | (1.0.0+git0+71ef99f6a0-r0) | -|190| mongoose | (2.6-r0) | -|191| mosquitto | (2.0.18-r0) | -|192| msgpack-c | (4.0.0+git0+a9a48cea3a-r0) | -|193| mtdev | (1.1.6-r0) | -|194| mtd-utils | (2.1.5-r2) | -|195| nanomsg | (1.1.5-r0) | -|196| ncurses | (6.3+20220423-r1) | -|197| ndisc6 | (1.0.6-r0) | -|198| ne10 | (1.2.1gitr+0+18c4c982a5-r0) | -|199| nettle | (2.7.1-r1) | -|200| networkmanager | (1.43.7-r11) | -|201| nghttp2 | (1.48.0-r1) | -|202| nopoll | (0.3.2.b232-r0) | -|203| nspr | (4.29-r0) | -|204| nss | (3.74-r2) | -|205| openjpeg | (2.4.0-r0) | -|206| openssh | (8.9p1-r0) | -|207| openssl-1.1.1l | (1.1.1l-r0) | -|208| openssl | (3.0.15-r2) | -|209| opkg | (0.5.0-r3) | -|210| opkg-arch-config | (1.0-r1) | -|211| opkg-utils | (0.5.0-r2) | -|212| orc | (0.4.31-r0) | -|213| packagegroup-oss-layer | (4.12.0-r0) | -|214| paho-mqtt-c | (1.3.10-r0) | -|215| perl | (5.34.3-r0) | -|216| pixman | (0.40.0-r0) | -|217| popt | (1.18-r0) | -|218| procps | (3.3.17-r1) | -|219| protobuf | (3.19.6-r0) | -|220| protobuf-c | (1.4.1-r0) | -|221| python | (2.7.18-r0) | -|222| python3 | (3.10.15-r1) | -|223| python3-dbus | (1.2.18-r0) | -|224| qrencode | (4.1.1-r0) | -|225| rapidjson | (1.1.0+git0+0ccdbf364c-r0) | -|226| rdkperf | (1.0.0+git0+d802d561c4-r0) | -|227| re2 | (2020.11.01-r0) | -|228| readline | (5.2-r9) | -|229| redis | (7.0.13-r1) | -|230| run-postinsts | (1.0-r10) | -|231| safec | (3.7.1-r0) | -|232| safec-common-wrapper | (1.0-r0) | -|233| sbc | (1.5-r0) | -|234| sed | (4.1.2-r1) | -|235| shadow | (4.11.1-r0) | -|236| shadow-securetty | (4.6-r3) | -|237| shared-mime-info | (2.1-r0) | -|238| slang | (2.3.2-r0) | -|239| smcroute | (2.4.4-r0) | -|240| speex | (1.2.0-r0) | -|241| speexdsp | (1.2.0-r0) | -|242| sqlite | (2.8.17-r7) | -|243| sqlite3 | (3.38.5-r1) | -|244| strace | (5.16-r0) | -|245| stunnel | (5.65-r3) | -|246| sysfsutils | (2.1.0-r6) | -|247| syslog-ng | (3.36.1-r3) | -|248| systemd | (230+git0+3a74d4fc90-r13) | -|249| systemd-serialgetty | (1.0.0-r5) | -|250| taglib | (1.12-r0) | -|251| tcpdump | (4.99.4-r0) | -|252| tcp-wrappers | (7.6-r10) | -|253| tiff | (4.3.0-r0) | -|254| trace-cmd | (2.9.1-r0) | -|255| tremor | (20180319-r0) | -|256| trower-base64 | (1.0-r0) | -|257| tzdata | (2024a-r1) | -|258| udev-extraconf | (1.1-r1) | -|259| unzip | (6.0-r5) | -|260| update-rc.d | (0.8-r0) | -|261| util-linux | (2.37.4-r3) | -|262| util-linux-libuuid | (2.37.4-r0) | -|263| util-macros | (1.19.3-r0) | -|264| vala | (0.56.3-r0) | -|265| vmtouch | (1.3.1-r0) | -|266| wayland | (1.20.0-r0) | -|267| wayland-default-egl | (1.20.0-r0) | -|268| wayland-protocols | (1.25-r1) | -|269| websocketpp | (0.8.2-r0) | -|270| wireless-regdb | (2024.07.04-r0) | -|271| wireless-tools | (30.pre9-r0) | -|272| woff2 | (1.0.2-r0) | -|273| wpa-supplicant | (2.10-r10) | -|274| xkeyboard-config | (2.35.1-r0) | -|275| xmlsec1 | (1.2.33-r1) | -|276| xz | (5.2.6-r1) | -|277| yajl | (2.1.0-r1) | -|278| yaml-cpp | (0.7.0-r0) | -|279| zlib | (1.2.11-r1) | -|280| zstd | (1.5.2-r1) | +|86| iso-codes | (4.15.0-r0) | +|87| jansson | (2.13.1-r0) | +|88| jquery | (1.0.0-r3) | +|89| json-c | (0.15-r0) | +|90| jsoncpp | (1.8.4-r0) | +|91| jsonrpc | (1.3.0-r0) | +|92| kbd | (2.4.0-r1) | +|93| keyutils | (1.6.1-r0) | +|94| kmod | (29-r0) | +|95| lcms | (2.13.1-r0) | +|96| libaio | (0.3.112-r0) | +|97| libarchive | (3.6.1-r3) | +|98| libatomic-ops | (7.6.14-r1) | +|99| libbsd | (0.11.5-r0) | +|100| libcap | (2.66-r1) | +|101| libcap-ng | (0.8.2-r0) | +|102| libcgroup | (2.0.2-r0) | +|103| libcheck | (0.15.2-r1) | +|104| libcroco | (0.6.13-r0) | +|105| libdaemon | (0.14-r0) | +|106| libdash | (1.0.0+git0+f5b5d991af-r1) | +|107| libdwarf | (20210528-r0) | +|108| liberation-fonts | (2.1.5-r0) | +|109| libev | (4.33-r0) | +|110| libevdev | (1.12.1-r1) | +|111| libevent | (2.1.12-r0) | +|112| libexif | (0.6.24-r0) | +|113| libffi | (3.4.4-r1) | +|114| libgcc | (11.3.0-r0) | +|115| libgcrypt | (1.9.4-r1) | +|116| libgpg-error | (1.44-r1) | +|117| libgudev | (237-r0) | +|118| libical | (3.0.16-r1) | +|119| libidn2 | (2.3.2-r0) | +|120| libinput | (1.19.4-r0) | +|121| libjpeg | (62.3.0-r0) | +|122| libmanette | (0.2.6-r5) | +|123| libmd | (1.0.4-r0) | +|124| libmicrohttpd | (0.9.76-r0) | +|125| libmng | (2.0.3-r0) | +|126| libmnl | (1.0.4-r0) | +|127| libndp | (1.8-r0) | +|128| libnewt | (0.52.23-r0) | +|129| libnl | (3.5.0-r1) | +|130| libnsl2 | (2.0.0-r0) | +|131| libnss-mdns | (0.15.1-r1) | +|132| liboauth | (1.0.3-r0) | +|133| libogg | (1.3.5-r0) | +|134| libol | (0.3.18-r0) | +|135| libomxil | (0.9.3-r1) | +|136| libopus | (1.3.1-r0) | +|137| libp11 | (0.4.17-r0) | +|138| libpam | (1.5.2-r0) | +|139| libpcap | (1.10.1-r2) | +|140| libpciaccess | (0.16-r0) | +|141| libpcre2 | (10.40-r0) | +|142| libpcre | (8.39-r0) | +|143| libpng | (1.6.39-r0) | +|144| libpsl | (0.21.1-r0) | +|145| libpthread-stubs | (0.4-r0) | +|146| libsamplerate0 | (0.2.2-r1) | +|147| libsdl | (1.2.15-r3) | +|148| libsdl-image | (1.2.12-r0) | +|149| libsdl-ttf | (2.0.11-r0) | +|150| libseccomp | (2.4.3-r1) | +|151| libsndfile1 | (1.0.31-r0) | +|152| libsolv | (0.7.22-r0) | +|153| libsoup-2.4 | (2.74.2-r1) | +|154| libsoup | (3.6.5-r1) | +|155| libstd-rs | (1.82.0-r0) | +|156| libtasn1 | (4.13-r1) | +|157| libtheora | (1.1.1-r1) | +|158| libtinyxml | (2.6.2-r5) | +|159| libtinyxml2 | (9.0.0-r0) | +|160| libtirpc | (1.3.2-r0) | +|161| libtool | (2.4.7-r1) | +|162| libunistring | (1.0-r0) | +|163| libunwind | (1.7.0-r0) | +|164| liburcu | (0.13.2-r1) | +|165| libusb1 | (1.0.27-r0) | +|166| libuv | (1.44.2-r0) | +|167| libvorbis | (1.3.7-r0) | +|168| libvpx | (1.12.0-r1) | +|169| libwebp | (1.3.2-r0) | +|170| libwebsockets | (4.2.2-r0) | +|171| libxcrypt | (4.4.33-r1) | +|172| libxkbcommon | (0.5.0-r0) | +|173| libxml2 | (2.9.14-r2) | +|174| libxslt | (1.1.35-r1) | +|175| libzip | (1.8.0-r0) | +|176| lighttpd | (1.4.53-r3) | +|177| linenoise | (1.0.0+git0+97d2850af1-r1) | +|178| linux-libc-headers | (4.9-r2) | +|179| log4c | (1.2.3-r0) | +|180| logrotate | (3.21.0-r2) | +|181| lsof | (4.94.0-r0) | +|182| lttng-ust | (2.13.6-r0) | +|183| lua | (5.4.4-r0) | +|184| lvm2 | (2.03.11-r0) | +|185| lz4 | (1.9.4-r1) | +|186| lzo | (2.10-r0) | +|187| m4 | (1.4.9-r2) | +|188| mbedtls | (2.16.3-r0) | +|189| mdns | (1556.80.2-r0) | +|190| minizip | (1.0.0+git0+71ef99f6a0-r0) | +|191| mongoose | (2.6-r0) | +|192| mosquitto | (2.0.18-r0) | +|193| msgpack-c | (4.0.0+git0+a9a48cea3a-r0) | +|194| mtdev | (1.1.6-r0) | +|195| mtd-utils | (2.1.5-r2) | +|196| nanomsg | (1.1.5-r0) | +|197| ncurses | (6.3+20220423-r2) | +|198| ndisc6 | (1.0.6-r0) | +|199| ne10 | (1.2.1gitr+0+18c4c982a5-r0) | +|200| nettle | (2.7.1-r1) | +|201| networkmanager | (1.43.7-r12) | +|202| nghttp2 | (1.48.0-r1) | +|203| nopoll | (0.3.2.b232-r0) | +|204| nspr | (4.29-r0) | +|205| nss | (3.74-r2) | +|206| openjpeg | (2.4.0-r0) | +|207| openssh | (8.9p1-r0) | +|208| openssl-1.1.1l | (1.1.1l-r0) | +|209| openssl | (3.0.15-r3) | +|210| opkg | (0.5.0-r4) | +|211| opkg-arch-config | (1.0-r1) | +|212| opkg-utils | (0.5.0-r2) | +|213| orc | (0.4.31-r0) | +|214| packagegroup-oss-layer | (4.13.0-r0) | +|215| paho-mqtt-c | (1.3.10-r0) | +|216| perl | (5.34.3-r0) | +|217| pixman | (0.40.0-r0) | +|218| popt | (1.18-r0) | +|219| procps | (3.3.17-r2) | +|220| protobuf | (3.19.6-r0) | +|221| protobuf-c | (1.4.1-r0) | +|222| python | (2.7.18-r0) | +|223| python3 | (3.10.15-r1) | +|224| python3-dbus | (1.2.18-r0) | +|225| qrencode | (4.1.1-r0) | +|226| rapidjson | (1.1.0+git0+0ccdbf364c-r0) | +|227| rdkperf | (1.0.0+git0+d802d561c4-r0) | +|228| re2 | (2020.11.01-r0) | +|229| readline | (5.2-r9) | +|230| redis | (7.0.13-r1) | +|231| run-postinsts | (1.0-r10) | +|232| safec | (3.7.1-r0) | +|233| safec-common-wrapper | (1.0-r0) | +|234| sbc | (1.5-r0) | +|235| sed | (4.1.2-r1) | +|236| shadow | (4.11.1-r0) | +|237| shadow-securetty | (4.6-r3) | +|238| shared-mime-info | (2.1-r0) | +|239| slang | (2.3.2-r0) | +|240| smcroute | (2.4.4-r0) | +|241| speex | (1.2.0-r0) | +|242| speexdsp | (1.2.0-r0) | +|243| sqlite | (2.8.17-r7) | +|244| sqlite3 | (3.38.5-r1) | +|245| strace | (5.16-r0) | +|246| stunnel | (5.65-r3) | +|247| sysfsutils | (2.1.0-r6) | +|248| syslog-ng | (3.36.1-r3) | +|249| systemd | (230+git0+3a74d4fc90-r13) | +|250| systemd-serialgetty | (1.0.0-r5) | +|251| taglib | (1.12-r0) | +|252| tcpdump | (4.99.4-r0) | +|253| tcp-wrappers | (7.6-r10) | +|254| tiff | (4.3.0-r0) | +|255| trace-cmd | (2.9.1-r0) | +|256| tremor | (20180319-r0) | +|257| trower-base64 | (1.0-r0) | +|258| tzdata | (2024a-r1) | +|259| udev-extraconf | (1.1-r1) | +|260| unzip | (6.0-r5) | +|261| update-rc.d | (0.8-r0) | +|262| util-linux | (2.37.4-r3) | +|263| util-linux-libuuid | (2.37.4-r0) | +|264| util-macros | (1.19.3-r0) | +|265| vala | (0.56.3-r0) | +|266| vmtouch | (1.3.1-r0) | +|267| wayland | (1.20.0-r0) | +|268| wayland-default-egl | (1.20.0-r0) | +|269| wayland-protocols | (1.25-r1) | +|270| websocketpp | (0.8.2-r0) | +|271| wireless-regdb | (2024.07.04-r0) | +|272| wireless-tools | (30.pre9-r0) | +|273| woff2 | (1.0.2-r0) | +|274| wpa-supplicant | (2.10-r11) | +|275| xkeyboard-config | (2.35.1-r0) | +|276| xmlsec1 | (1.2.33-r1) | +|277| xz | (5.2.6-r1) | +|278| yajl | (2.1.0-r1) | +|279| yaml-cpp | (0.7.0-r0) | +|280| zlib | (1.2.11-r1) | +|281| zstd | (1.5.2-r1) | ### Diff report of the meta layers contributing to this release of OSS layer project is available at below links -- [ ] meta-rdk-auxiliary [1.7.0-->1.8.0] (https://github.com/rdkcentral/meta-rdk-auxiliary/compare/1.7.0...1.8.0) -- [ ] meta-rdk-oss-reference [4.11.0-->4.12.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.11.0...4.12.0) -- [ ] poky [rdk-4.5.0-->rdk-4.6.0] (https://github.com/rdkcentral/poky/compare/rdk-4.5.0...rdk-4.6.0) +- [ ] meta-rdk-auxiliary [1.8.0-->1.9.0] (https://github.com/rdkcentral/meta-rdk-auxiliary/compare/1.8.0...1.9.0) +- [ ] meta-rdk-oss-reference [4.12.0-->4.13.0] (https://github.com/rdkcentral/meta-rdk-oss-reference/compare/4.12.0...4.13.0) +- [ ] poky [rdk-4.6.0-->rdk-4.7.0] (https://github.com/rdkcentral/poky/compare/rdk-4.6.0...rdk-4.7.0) From 274ec09e4c9042dda0a0e4be4cdc64a372a52a27 Mon Sep 17 00:00:00 2001 From: vbaby096 Date: Fri, 15 May 2026 18:28:25 +0000 Subject: [PATCH 18/18] 4.13.0 release change log updates --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 055fcb0..4b6d209 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,25 @@ 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). +#### [4.13.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.12.2...4.13.0) + +- RDKE-1040: Update release notes for 4.13.0 [`#88`](https://github.com/rdkcentral/meta-oss-reference-release/pull/88) +- Update CODEOWNERS [`#87`](https://github.com/rdkcentral/meta-oss-reference-release/pull/87) +- Merge tag '4.12.0' into develop [`0fa9124`](https://github.com/rdkcentral/meta-oss-reference-release/commit/0fa912471d4bb121e2842a2c38fe0731146d99e9) + +#### [4.12.2](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.12.0...4.12.2) + +> 3 April 2026 + +- RDKOSS-820: OSS Release 4.12.2 [`7c2bf5c`](https://github.com/rdkcentral/meta-oss-reference-release/commit/7c2bf5c95a8fdb90b96bdac315c0e38da5d3001d) +- RDKOSS-820: Update changelog for Rel 4.12.2 [`4897cf7`](https://github.com/rdkcentral/meta-oss-reference-release/commit/4897cf7042360953888123e97ec60c367ddf490f) + #### [4.12.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.11.0...4.12.0) +> 2 March 2026 + - RDKE-971: Updated Release note for 4.12.0 [`#82`](https://github.com/rdkcentral/meta-oss-reference-release/pull/82) +- RDKE-971: Update Changelog for Rel 4.12.0 [`83ded17`](https://github.com/rdkcentral/meta-oss-reference-release/commit/83ded1759561d7b53a8e46c7439e70ca8c6b525f) - Merge tag '4.11.0' into develop [`532c056`](https://github.com/rdkcentral/meta-oss-reference-release/commit/532c056219d284121627834cdf90fe36418431ed) #### [4.11.0](https://github.com/rdkcentral/meta-oss-reference-release/compare/4.10.1...4.11.0)