Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
@@ -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 }}
Comment thread Dismissed
6 changes: 6 additions & 0 deletions conf/include/vendor_pkg_versions.inc
Original file line number Diff line number Diff line change
Expand Up @@ -248,3 +248,9 @@ SRCREV:pn-displayinfo-soc = "1.0.0"
PV:pn-displayinfo-soc = "1.0.0"
PR:pn-displayinfo-soc = "r0"
PACKAGE_ARCH:pn-displayinfo-soc = "${VENDOR_LAYER_EXTENSION}"

SRCREV:pn-miracast-hal-raspberrypi4 = "1.0.1"
PV:pn-miracast-hal-raspberrypi4 = "1.0.1"
PR:pn-miracast-hal-raspberrypi4 = "r0"
PACKAGE_ARCH:pn-miracast-hal-raspberrypi4 = "${VENDOR_LAYER_EXTENSION}"

2 changes: 1 addition & 1 deletion recipes-core/images/vendor-test-image.bb
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ IMAGE_ROOTFS_SIZE ?= "8192"
IMAGE_ROOTFS_EXTRA_SPACE:append = "${@bb.utils.contains("DISTRO_FEATURES", "systemd", " + 4096", "" ,d)}"

# RDKEMW-2939: Remove symlinks for /etc/resolv.conf in Vendor, udhcpc populates the value in Vendor
ROOTFS_POSTPROCESS_COMMAND:remove += " create_NM_link; "
ROOTFS_POSTPROCESS_COMMAND:remove = " create_NM_link; "
3 changes: 2 additions & 1 deletion recipes-core/packagegroups/packagegroup-hal-raspberrypi4.bb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PACKAGE_ARCH = "${VENDOR_LAYER_EXTENSION}"

inherit packagegroup

PV = "1.0.0"
PV = "1.0.1"
PR = "r0"

RDEPENDS:${PN} = " \
Expand All @@ -18,4 +18,5 @@ RDEPENDS:${PN} = " \
audio-service-rpi \
gst-drm-plugins-rpi \
secapi2-adapter-rpi \
miracast-hal-raspberrypi4 \
"
2 changes: 1 addition & 1 deletion recipes-core/packagegroups/packagegroup-vendor-layer.bb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inherit packagegroup

DEPENDS = " virtual/kernel make-mod-scripts"

PV = "4.5.0"
PV = "4.5.1"
PR = "r0"

RDEPENDS:${PN} = " \
Expand Down
18 changes: 18 additions & 0 deletions recipes-halif/miracast/miracast-hal-raspberrypi4.bb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
SUMMARY = "Recipe for Miracast HAL"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"

SRC_URI = "${CMF_GITHUB_ROOT}/rdkvhal-miracast-raspberrypi4;${CMF_GIT_SRC_URI_SUFFIX}"

S = "${WORKDIR}/git"

PROVIDES = "virtual/vendor-miracast-soc"
RPROVIDES:${PN} = "virtual/vendor-miracast-soc"

inherit pkgconfig cmake

DEPENDS = "${@bb.utils.contains('DISTRO_FEATURES', 'gstreamer1', 'gstreamer1.0 gstreamer1.0-plugins-base', 'gstreamer gst-plugins-base', d)}"
RDEPENDS:${PN} = "${@bb.utils.contains('DISTRO_FEATURES', 'gstreamer1', 'gstreamer1.0 gstreamer1.0-plugins-base', 'gstreamer gst-plugins-base', d)}"

# Inhibit Yocto's auto-generation of library package with different name.
AUTO_LIBNAME_PKGS = ""
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'gstreamer1', 'gstreamer1.0
DEPENDS += "rdk-gstreamer-utils-headers"

SRC_URI = "${CMF_GITHUB_ROOT}/rdk-gstreamer-utils-raspberrypi;${CMF_GITHUB_SRC_URI_SUFFIX}"
S = "${WORKDIR}/git/"
S = "${WORKDIR}/git"

PROVIDES = "virtual/vendor-rdk-gstreamer-utils-platform"
RPROVIDES:${PN} = "virtual/vendor-rdk-gstreamer-utils-platform"
Expand Down
3 changes: 2 additions & 1 deletion recipes-soc/systemaudioplatform/systemaudioplatform_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ LIC_FILES_CHKSUM = "file://../LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'gstreamer1', 'gstreamer1.0 gstreamer1.0-plugins-base', 'gstreamer gst-plugins-base', d)}"
SRC_URI = "${CMF_GITHUB_ROOT}/rdkvhal-systemaudioplatform-raspberrypi4;${CMF_GIT_SRC_URI_SUFFIX}"

S = "${WORKDIR}/git/systemaudioplatform/"
S = "${WORKDIR}/git/systemaudioplatform"

inherit cmake pkgconfig

FILES:${PN} = "/usr/lib/libsystemaudioplatform.so.*"
Expand Down