angstrom x11vnc xinit: add xinit script to export your x session over VNC - TOTALLY...
authorKoen Kooi <koen@openembedded.org>
Mon, 17 Nov 2008 14:23:39 +0000 (15:23 +0100)
committerKoen Kooi <koen@openembedded.org>
Mon, 17 Nov 2008 14:23:39 +0000 (15:23 +0100)
* Jaadu and Chicken of the VNC pick up your host using mdns, although Jaadu only shows ":0" for each host

packages/angstrom/angstrom-x11vnc-xinit.bb [new file with mode: 0644]

diff --git a/packages/angstrom/angstrom-x11vnc-xinit.bb b/packages/angstrom/angstrom-x11vnc-xinit.bb
new file mode 100644 (file)
index 0000000..ee21d81
--- /dev/null
@@ -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"
+