changeset 1193:6173bb6f3b2c

Three convenience scripts to bounce off build/system-image-$ARCH and run stuff out of there in one go.
author Rob Landley <rob@landley.net>
date Thu, 05 Aug 2010 12:08:02 -0500
parents 8d5a672cd293
children 2c4a65636d72
files more/dev-environment-from-build.sh more/native-build-from-build.sh more/run-emulator-from-build.sh
diffstat 3 files changed, 27 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/more/dev-environment-from-build.sh	Thu Aug 05 12:08:02 2010 -0500
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+# Run development environment out of build directory, using host-tools.sh if
+# available.
+
+cd build/system-image-"$1" &&
+  PATH="$(pwd)/build/host:$PATH" ./dev-environment.sh
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/more/native-build-from-build.sh	Thu Aug 05 12:08:02 2010 -0500
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+# Run native build out of build directory, using host-tools.sh if
+# available.
+
+PATH="$(pwd)/build/host:$PATH"
+
+X=$(readlink -f "$2" 2>/dev/null)
+if [ -z "$X" ]
+then
+  echo "No control image $2" >&2
+  exit 1
+fi
+
+cd build/system-image-"$1" && ./native-build.sh "$X"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/more/run-emulator-from-build.sh	Thu Aug 05 12:08:02 2010 -0500
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+# Launch system image out of build directory.
+
+cd build/system-image-"$1" && ./run-emulator.sh