diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-23 17:27:14 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-23 17:27:14 +0000 |
commit | df74cf25f0904562623a15b641a7770d2fa88570 (patch) | |
tree | 72a527507655f62e12dd972993ac07663745779f /scripts/qemuimage-testlib | |
parent | d21090934d64ae04b0362eb55ecfac1ea72a797e (diff) | |
download | openembedded-core-df74cf25f0904562623a15b641a7770d2fa88570.tar.gz openembedded-core-df74cf25f0904562623a15b641a7770d2fa88570.tar.bz2 openembedded-core-df74cf25f0904562623a15b641a7770d2fa88570.zip |
qemuimage-testlib: Ensure TOPDIR/BUILDDIR are set
The recent environment changes mean TOPDIR/BUILDDIR need to be exported
specifcially to the enviromnent so the qemu scripts can find the correct
build directory.
Without this, qemu can fail to run.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'scripts/qemuimage-testlib')
-rw-r--r-- | scripts/qemuimage-testlib | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/qemuimage-testlib b/scripts/qemuimage-testlib index 608c6f0a75..79882d9ea7 100644 --- a/scripts/qemuimage-testlib +++ b/scripts/qemuimage-testlib @@ -396,7 +396,8 @@ Test_Create_Qemu() export MACHINE=$QEMUARCH # Create Qemu in localhost VNC Port 1 - xterm -display ${DISPLAY} -e "${RUNQEMU} ${KERNEL} ${TEST_ROOTFS_IMAGE}" & + echo "Running xterm -display ${DISPLAY} -e 'BUILDDIR=${TOPDIR} ${RUNQEMU} ${KERNEL} ${TEST_ROOTFS_IMAGE}' &" + xterm -display ${DISPLAY} -e "BUILDDIR=${TOPDIR} ${RUNQEMU} ${KERNEL} ${TEST_ROOTFS_IMAGE}" & # Get the pid of the xterm processor, which will be used in Test_Kill_Qemu PID=$! |