aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/conf/distro/poky.conf2
-rw-r--r--meta/packages/oh/qemu-distcc.bb15
-rw-r--r--meta/packages/oh/qemu-distcc/distcc.sh4
3 files changed, 21 insertions, 0 deletions
diff --git a/meta/conf/distro/poky.conf b/meta/conf/distro/poky.conf
index 028887802a..2864894b31 100644
--- a/meta/conf/distro/poky.conf
+++ b/meta/conf/distro/poky.conf
@@ -184,3 +184,5 @@ IMAGE_LINGUAS = "en-gb"
DISTRO_FEATURES = "alsa bluetooth ext2 irda pcmcia usbgadget usbhost wifi"
DISTRO_FEATURES_cmx270 = "alsa bluetooth ext2 irda pcmcia usbgadget usbhost"
+DISTRO_EXTRA_RDEPENDS_qemuarm += "qemu-distcc"
+DISTRO_EXTRA_RDEPENDS_qemux86 += "qemu-distcc" \ No newline at end of file
diff --git a/meta/packages/oh/qemu-distcc.bb b/meta/packages/oh/qemu-distcc.bb
new file mode 100644
index 0000000000..26179aca70
--- /dev/null
+++ b/meta/packages/oh/qemu-distcc.bb
@@ -0,0 +1,15 @@
+DESCRIPTION = "Adds scripts to use distcc on the host system under qemu"
+LICENSE = "GPL"
+RDEPENDS = "distcc"
+
+SRC_URI = "file://distcc.sh"
+S = "${WORKDIR}"
+
+COMPATIBLE_MACHINE = "(qemuarm|qemux86)"
+PACKAGE_ARCH = "all"
+
+do_install() {
+ install -d ${D}/etc
+ install -d ${D}/etc/profile.d
+ install distcc.sh ${D}/etc/profile.d/
+}
diff --git a/meta/packages/oh/qemu-distcc/distcc.sh b/meta/packages/oh/qemu-distcc/distcc.sh
new file mode 100644
index 0000000000..a2b543d6b8
--- /dev/null
+++ b/meta/packages/oh/qemu-distcc/distcc.sh
@@ -0,0 +1,4 @@
+DISTCC_HOSTS="192.168.7.1"
+#DISTCC_VERBOSE="1"
+
+export DISTCC_HOSTS