[oe-commits] Richard Purdie : runqemu-internal: Drop distcc support

git at git.openembedded.org git at git.openembedded.org
Tue Apr 16 11:36:41 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: 1a70a3225947aa45f3e1f377d50a5865aac64d2b
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=1a70a3225947aa45f3e1f377d50a5865aac64d2b

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Tue Apr 16 11:31:56 2013 +0000

runqemu-internal: Drop distcc support

The distcc support is clearly unused and broken, might as well drop the
remaining code fragements.

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 scripts/runqemu-internal |   22 +---------------------
 1 files changed, 1 insertions(+), 21 deletions(-)

diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index c7e4c5c..f11706d 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -20,7 +20,6 @@
 # Call setting:
 #   QEMU_MEMORY (optional) - set the amount of memory in the emualted system.
 #   SERIAL_LOGFILE (optional) - log the serial port output to a file
-#   CROSSPATH - the path to any cross toolchain to use with distcc
 #
 # Image options:
 #   MACHINE - the machine to run
@@ -480,11 +479,7 @@ if [ "x$QEMUOPTIONS" = "x" ]; then
     return 1
 fi
 
-if [ "x$CROSSPATH" = "x" ]; then
-    PATH=$OECORE_NATIVE_SYSROOT/usr/bin:$PATH
-else
-    PATH=$CROSSPATH:$OECORE_NATIVE_SYSROOT/usr/bin:$PATH
-fi
+PATH=$OECORE_NATIVE_SYSROOT/usr/bin:$PATH
 
 QEMUBIN=`which $QEMU 2> /dev/null`
 if [ ! -x "$QEMUBIN" ]; then
@@ -511,27 +506,12 @@ if [ "$NEED_GL" != "" ]; then
 fi
 
 do_quit() {
-    if [ -n "$PIDFILE" ]; then
-        #echo kill `cat $PIDFILE`
-        kill `cat $PIDFILE`
-    fi
     cleanup
     return 1
 }
 
-DISTCCD=`which distccd 2> /dev/null`
-PIDFILE=""
-
 trap do_quit INT TERM QUIT
 
-if [ -x "$DISTCCD" ]; then
-    echo "Starting distccd..."
-    PIDFILE=`mktemp`
-    $DISTCCD --allow 192.168.7.2 --daemon --pid-file $PIDFILE &
-else
-    echo "WARNING: distccd not present, no distcc support loaded."
-fi
-
 # qemu got segfault if linked with nVidia's libgl
 GL_LD_PRELOAD=$LD_PRELOAD
 





More information about the Openembedded-commits mailing list