From 4f2b84081ab4444e8d293e503a362e54f3bcc159 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 16 Apr 2013 11:31:56 +0000 Subject: runqemu-internal: Drop distcc support The distcc support is clearly unused and broken, might as well drop the remaining code fragements. (From OE-Core rev: 1a70a3225947aa45f3e1f377d50a5865aac64d2b) Signed-off-by: Richard Purdie --- scripts/runqemu-internal | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) (limited to 'scripts') diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal index c7e4c5c7e2..f11706d7e7 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 -- cgit v1.2.3-54-g00ecf