weston-ini-config: Move remoting conf to PipeWire 14/30614/3
authorMarius Vlad <marius.vlad@collabora.com>
Wed, 4 Dec 2024 21:10:40 +0000 (23:10 +0200)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Fri, 13 Dec 2024 11:53:51 +0000 (11:53 +0000)
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>
recipes-graphics/wayland/weston-ini-conf/remote-output.cfg.in
recipes-graphics/wayland/weston-ini-conf_agldemo.inc

index dc52338..62aa904 100644 (file)
@@ -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() {