[oe-commits] Koen Kooi : angstrom x11vnc xinit: add xinit script to export your x session over VNC - TOTALLY INSECURE -

GIT User account git at amethyst.openembedded.net
Mon Nov 17 14:26:12 UTC 2008


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 533bb113090601f260d023cafe2ca5e4a8efdfd1
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=533bb113090601f260d023cafe2ca5e4a8efdfd1

Author: Koen Kooi <koen at openembedded.org>
Date:   Mon Nov 17 15:23:39 2008 +0100

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

---

 packages/angstrom/angstrom-x11vnc-xinit.bb |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

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





More information about the Openembedded-commits mailing list