aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-16 11:31:56 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-16 12:39:27 +0100
commit1a70a3225947aa45f3e1f377d50a5865aac64d2b (patch)
tree186120dd08feb22f0bf3ba193ef65472e4920785 /scripts
parent55d00b750f5c45e583abef406c96416cd6a8caa7 (diff)
downloadopenembedded-core-contrib-1a70a3225947aa45f3e1f377d50a5865aac64d2b.tar.gz
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@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu-internal22
1 files changed, 1 insertions, 21 deletions
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