From: Koen Kooi Date: Mon, 17 Nov 2008 14:23:39 +0000 (+0100) Subject: angstrom x11vnc xinit: add xinit script to export your x session over VNC - TOTALLY... X-Git-Tag: Release-2010-05/1~5291^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=533bb113090601f260d023cafe2ca5e4a8efdfd1;p=openembedded.git angstrom x11vnc xinit: add xinit script to export your x session over VNC - TOTALLY INSECURE - * Jaadu and Chicken of the VNC pick up your host using mdns, although Jaadu only shows ":0" for each host --- diff --git a/packages/angstrom/angstrom-x11vnc-xinit.bb b/packages/angstrom/angstrom-x11vnc-xinit.bb new file mode 100644 index 0000000000..ee21d81e03 --- /dev/null +++ b/packages/angstrom/angstrom-x11vnc-xinit.bb @@ -0,0 +1,14 @@ +DESCRIPTION = "Script to start a passwordless vnc of the current X session" +LICENSE = "MIT" +RDEPENDS = "x11vnc" + +do_install() { + install -d ${D}/${sysconfdir}/X11/Xinit.d + echo "#!/bin/sh" > ${D}/${sysconfdir}/X11/Xinit.d/02vnc + echo "x11vnc -q -bg -display :0 -forever -avahi" >> ${D}/${sysconfdir}/X11/Xinit.d/02vnc + chmod 0755 ${D}/${sysconfdir}/X11/Xinit.d/02vnc +} + +CONFFILES_${PN} += "${sysconfdir}/X11/Xinit.d/02vnc" +PACKAGE_ARCH = "all" +