Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for Release Kirkstone 1.4.33 LTS (blocked) #172

Open
wants to merge 24 commits into
base: kirkstone
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add Kirkstone compatibility
jolting committed Jul 30, 2024
commit 89fc87a4ae4370959d50a57512c32f95e76481dd
2 changes: 1 addition & 1 deletion conf/layer.conf
Original file line number Diff line number Diff line change
@@ -10,5 +10,5 @@ BBFILE_PATTERN_meta-iotedge = "^${LAYERDIR}/"
BBFILE_PRIORITY_meta-iotedge = "10"

LAYERDEPENDS_meta-iotedge = "core virtualization-layer"
LAYERSERIES_COMPAT_meta-iotedge = "scarthgap"
LAYERSERIES_COMPAT_meta-iotedge = "scarthgap kirkstone"

6 changes: 1 addition & 5 deletions recipes-core/aziot-edged/aziot-edged.inc
Original file line number Diff line number Diff line change
@@ -11,11 +11,7 @@ SRC_URI += "file://aziot-edged.service \
file://iotedge.conf \
"

do_install () {
# Binaries
install -d ${D}${bindir}
install -m 755 ${WORKDIR}/build/target/${RUST_TARGET_SYS}/release/aziot-edged ${D}${bindir}/aziot-edged

do_install:append () {
# Create symbolic links
install -d ${D}${libexecdir}/aziot
ln -s ${bindir}/aziot-edged ${D}${libexecdir}/aziot/aziot-edged
5 changes: 1 addition & 4 deletions recipes-core/aziotd/aziotd.inc
Original file line number Diff line number Diff line change
@@ -19,10 +19,7 @@ SRC_URI += "file://aziot-certd.service \



do_install () {
# Binaries
install -d ${D}${bindir}
install -m 755 ${WORKDIR}/build/target/${RUST_TARGET_SYS}/release/aziotd ${D}${bindir}/aziotd
do_install:append () {
install -d ${D}${systemd_unitdir}/system

# Create symbolic links
6 changes: 0 additions & 6 deletions recipes-core/iotedge/iotedge.inc
Original file line number Diff line number Diff line change
@@ -3,9 +3,3 @@ RDEPENDS:${PN} += "aziotctl"

export OPENSSL_DIR = "${STAGING_EXECPREFIXDIR}"
export LIBIOTHSM_NOBUILD="On"

do_install () {
# Binaries
install -d "${D}${bindir}"
install -m 755 "${WORKDIR}/build/target/${RUST_TARGET_SYS}/release/iotedge" ${D}${bindir}/iotedge
}