This option enables an rdp server for one primary display.
It is intended to be used e.g. with the aws-ec2-x86-64 or
aws-ec2-arm64 machines in the first place but can be useful
for debugging purposes for local setup as well.
Bug-AGL: SPEC-5093
Change-Id: I2659628d389080ba382da3c7e5ec1286c2ed1286
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
(cherry picked from commit
405183531725ec7ed27985bc62e2804658b4e3d0)
--- /dev/null
+# We have a conf and classes directory, add to BBPATH
+BBPATH .= ":${LAYERDIR}"
+
+# We have recipes-* directories, add to BBFILES
+BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
+ ${LAYERDIR}/recipes-*/*/*.bbappend"
+
+BBFILE_COLLECTIONS += "meta-aglrdp"
+BBFILE_PATTERN_meta-aglrdp = "^${LAYERDIR}/"
+BBFILE_PRIORITY_meta-aglrdp = "8"
+
+LAYERSERIES_COMPAT_meta-aglrdp= "kirkstone"
--- /dev/null
+DESCRIPTION = "Sample key files for the freerdp server"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
+
+SRC_URI = " file://server.crt file://server.key "
+
+FILES:${PN} = "/etc/xdg/weston/server.crt /etc/xdg/weston/server.key"
+
+do_configure[noexec] = "1"
+do_compile[noexec] = "1"
+
+do_install () {
+
+ install -d ${D}/etc/xdg/weston
+ install -m 0644 ${WORKDIR}/server.crt ${D}/etc/xdg/weston/server.crt
+ install -m 0644 ${WORKDIR}/server.key ${D}/etc/xdg/weston/server.key
+
+}
--- /dev/null
+FILESEXTRAPATHS:prepend:agl-rdp := "${THISDIR}/${PN}:"
+
+SRC_URI:prepend:agl-rdp = " file://rdp-standalone.cfg "
+
+WESTON_DISPLAYS:agl-rdp = " "
+WESTON_FRAGMENTS:agl-rdp = " rdp-standalone "
+
+# sample keys
+AGL_FREERDP_DEFAULT_KEYS ?= "agl-freerdp-sample-server-key"
+AGL_FREERDP_DEPENDENCY ?= "${AGL_FREERDP_DEFAULT_KEYS}"
+RDEPENDS:${PN}:append:agl-rdp = " ${AGL_FREERDP_DEPENDENCY} "
+
+# the key tools need to be on-target (for now)
+RDEPENDS:${PN}:agl-rdp += " freerdp "
+
--- /dev/null
+[core]
+backend=rdp-backend.so
+require-input=false
+idle-time=0
+modules=systemd-notify.so
+activate-by-default=false
+
+[rdp]
+tls-key=/etc/xdg/weston/server.key
+tls-cert=/etc/xdg/weston/server.crt
+# change with/height for demo
+width=1080
+height=1920
+# transform not working in weston10
+#transform=rotate-90
--- /dev/null
+# remote display setup
+PACKAGECONFIG:append:agl-rdp = " rdp"
--- /dev/null
+BBLAYERS =+ " \
+ ${METADIR}/meta-agl-devel/meta-agl-rdp \
+"
--- /dev/null
+OVERRIDES:append = ":agl-rdp"