diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2024-12-04 23:10:40 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-12-13 11:53:51 +0000 |
commit | 626d26d5bab3b0bf57548c4c2fc94902cb5cfab9 (patch) | |
tree | 169ffa706f926d9f5b795db3624cc7dea729dbbe | |
parent | 747273d984b4c231679042e38a91d4e75ad57098 (diff) |
weston-ini-config: Move remoting conf to PipeWire
The output configuration for PipeWire is much simpler, no needing any
HOST, PORT or MODE. MODE seems to be acually unused so we're going to
remove that as well.
Bug-AGL: SPEC-5235
Change-Id: Ic171fff824101efdb5530ad790dac4137d39ff80
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/30614
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
-rw-r--r-- | recipes-graphics/wayland/weston-ini-conf/remote-output.cfg.in | 8 | ||||
-rw-r--r-- | recipes-graphics/wayland/weston-ini-conf_agldemo.inc | 10 |
2 files changed, 4 insertions, 14 deletions
diff --git a/recipes-graphics/wayland/weston-ini-conf/remote-output.cfg.in b/recipes-graphics/wayland/weston-ini-conf/remote-output.cfg.in index 940cbdd0c..3d30af64b 100644 --- a/recipes-graphics/wayland/weston-ini-conf/remote-output.cfg.in +++ b/recipes-graphics/wayland/weston-ini-conf/remote-output.cfg.in @@ -1,5 +1,3 @@ -[remote-output] -name=remote-1 -mode=640x720@30 -host=192.168.10.3 -port=5005 +[output] +name=pipewire +mode=420x472 diff --git a/recipes-graphics/wayland/weston-ini-conf_agldemo.inc b/recipes-graphics/wayland/weston-ini-conf_agldemo.inc index dc5233817..62aa9048b 100644 --- a/recipes-graphics/wayland/weston-ini-conf_agldemo.inc +++ b/recipes-graphics/wayland/weston-ini-conf_agldemo.inc @@ -4,17 +4,9 @@ SRC_URI += "file://remote-output.cfg.in" WESTON_FRAGMENTS_BASE += "grpc-proxy" -# Options for the user to change in local.conf -# e.g. REMOTING_OUTPUT_MODE = "1080x1488" -REMOTING_OUTPUT_MODE ??= "640x720@30" -REMOTING_OUTPUT_HOST ??= "192.168.10.3" -REMOTING_OUTPUT_PORT ??= "5005" - do_configure:append() { # Standalone cluster support version - sed -e "s#host=.*#host=${REMOTING_OUTPUT_HOST}#" \ - -e "s#port=.*#port=${REMOTING_OUTPUT_PORT}#" \ - ${WORKDIR}/remote-output.cfg.in > ${WORKDIR}/remote-output.cfg + cp ${WORKDIR}/remote-output.cfg.in ${WORKDIR}/remote-output.cfg } do_compile:append() { |