Skip to content
Open
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
15 changes: 11 additions & 4 deletions conf/layer.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,19 @@ BBPATH .= ":${LAYERDIR}"
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
${LAYERDIR}/recipes-*/*/*.bbappend"

# Device-dependent locations
BBFILES_DYNAMIC += " \
freescale-layer:${LAYERDIR}/dynamic-layers/meta-freescale/recipes-*/*/*.bb \
freescale-layer:${LAYERDIR}/dynamic-layers/meta-freescale/recipes-*/*/*.bbappend \
freescale-distro:${LAYERDIR}/dynamic-layers/meta-freescale-distro/recipes-*/*/*.bb \
freescale-distro:${LAYERDIR}/dynamic-layers/meta-freescale-distro/recipes-*/*/*.bbappend \
imx-frdm-sdk-release:${LAYERDIR}/dynamic-layers/meta-imx-sdk/recipes-*/*/*.bb \
imx-frdm-sdk-release:${LAYERDIR}/dynamic-layers/meta-imx-sdk/recipes-*/*/*.bbappend \
"

BBFILE_COLLECTIONS += "meta-openhd"
BBFILE_PATTERN_meta-openhd = "^${LAYERDIR}/"
BBFILE_PRIORITY_meta-openhd = "6"

LAYERDEPENDS_meta-openhd = "core"
LAYERSERIES_COMPAT_meta-openhd = "kirkstone scarthgap"

# Prevent linux-imx customizations from affecting kirkstone-based BSPs
BBMASK:append:kirkstone = "|linux-imx_%.bbappend"
LAYERSERIES_COMPAT_meta-openhd = "kirkstone scarthgap"
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FILESEXTRAPATHS:prepend := "${THISDIR}/linux-imx:"

SRC_URI:append = " file://os08a20-wlan.cfg"

4 changes: 0 additions & 4 deletions recipes-kernel/linux/linux-imx_%.bbappend

This file was deleted.

4 changes: 3 additions & 1 deletion recipes-openhd/openhd/openhd_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ S = "${WORKDIR}/git/OpenHD"

inherit cmake pkgconfig systemd

PACKAGECONFIG ??= "webui"
PACKAGECONFIG[webui] = ",,,openhd-webui"

DEPENDS = "flac poco libsodium gstreamer1.0 gstreamer1.0-plugins-base libpcap libusb1 libv4l"

RDEPENDS:${PN} += " \
Expand All @@ -25,7 +28,6 @@ RDEPENDS:${PN} += " \
gstreamer1.0-plugins-ugly \
gstreamer1.0-libav \
v4l-utils \
openhd-webui \
"

SYSTEMD_SERVICE:${PN} = "openhd_mod.service"
Expand Down
9 changes: 9 additions & 0 deletions recipes-support/poco/poco_%.bbappend
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# poco upstream changed from 'master' to 'main':
# - kirkstone uses 1.11.2, with the pinned SRCREV in 'main'
# - scarthgap uses 1.12.5, with the pinned SRCREV *NOT* in 'main', but in a leftover branch
# FIXME: Both are fixed in upstream meta-openembedded, remove this bbappend after updating

POCO_FETCH_BRANCH = "${@bb.utils.contains('LAYERSERIES_CORENAMES', 'scarthgap', 'poco-1.12.5', 'main', d)}"

SRC_URI:remove = "git://github.com/pocoproject/poco.git;branch=master;protocol=https"
SRC_URI:append = " git://github.com/pocoproject/poco.git;branch=${POCO_FETCH_BRANCH};protocol=https"
3 changes: 0 additions & 3 deletions recipes-support/poco/poco_1.12.5p2.bbappend

This file was deleted.