diff options
-rw-r--r-- | meta-agl-core/conf/distro/poky-agl.conf | 6 | ||||
-rw-r--r-- | meta-agl-core/recipes-graphics/wayland/agl-compositor-init-pipewire.bb | 11 |
2 files changed, 9 insertions, 8 deletions
diff --git a/meta-agl-core/conf/distro/poky-agl.conf b/meta-agl-core/conf/distro/poky-agl.conf index 94e3d6d5c..335f4f6a0 100644 --- a/meta-agl-core/conf/distro/poky-agl.conf +++ b/meta-agl-core/conf/distro/poky-agl.conf @@ -11,7 +11,7 @@ DISTRO_NAME = "Automotive Grade Linux" # Release flags DISTRO_CODENAME = "salmon" AGL_BRANCH = "master" -AGLVERSION = "18.91.0" +AGLVERSION = "18.92.0" # switch devel/release #AGLRELEASETYPE ?= "agldevelopment" @@ -29,8 +29,8 @@ DISTRO_BRANCH_VERSION_TAG = "${DISTRO_CODENAME}/${@'${DISTRO_VERSION}'.replace(' # reproducible builds: # Set the desired timestamps # E.g. update for (major) releases -export SOURCE_DATE_EPOCH = "1732531413" -REPRODUCIBLE_TIMESTAMP_ROOTFS = "1732531413" +export SOURCE_DATE_EPOCH = "1734348334" +REPRODUCIBLE_TIMESTAMP_ROOTFS = "1734348334" # SDK diff --git a/meta-agl-core/recipes-graphics/wayland/agl-compositor-init-pipewire.bb b/meta-agl-core/recipes-graphics/wayland/agl-compositor-init-pipewire.bb index f1d73732a..c42cb9793 100644 --- a/meta-agl-core/recipes-graphics/wayland/agl-compositor-init-pipewire.bb +++ b/meta-agl-core/recipes-graphics/wayland/agl-compositor-init-pipewire.bb @@ -12,22 +12,23 @@ SRC_URI = "file://agl-compositor-pipewire.conf \ file://agl-compositor-stream-pipewire.service \ " -S = "${WORKDIR}" +S = "${WORKDIR}/sources" +UNPACKDIR = "${S}" AGL_KVM_REMOTE_OUTPUT_IP ?= "172.16.10.3" AGL_KVM_REMOTE_OUTPUT_PORT ?= "5005" do_install() { sed -i -e "s,@REMOTE_OUTPUT_IP@,${AGL_KVM_REMOTE_OUTPUT_IP},g" \ - ${WORKDIR}/agl-compositor-stream-pipewire.service + ${UNPACKDIR}/agl-compositor-stream-pipewire.service sed -i -e "s,@REMOTE_OUTPUT_PORT@,${AGL_KVM_REMOTE_OUTPUT_PORT},g" \ - ${WORKDIR}/agl-compositor-stream-pipewire.service + ${UNPACKDIR}/agl-compositor-stream-pipewire.service - install -D -p -m0644 ${WORKDIR}/agl-compositor-stream-pipewire.service ${D}${systemd_system_unitdir}/agl-compositor-stream-pipewire.service + install -D -p -m0644 ${UNPACKDIR}/agl-compositor-stream-pipewire.service ${D}${systemd_system_unitdir}/agl-compositor-stream-pipewire.service install -d ${D}${systemd_system_unitdir}/agl-compositor.service.d - install -m644 ${WORKDIR}/agl-compositor-pipewire.conf ${D}/${systemd_system_unitdir}/agl-compositor.service.d/02-agl-compositor.conf + install -m644 ${UNPACKDIR}/agl-compositor-pipewire.conf ${D}/${systemd_system_unitdir}/agl-compositor.service.d/02-agl-compositor.conf } FILES:${PN} += "\ |