changeset 860:6b80bbc15ded

Add some comments.
author Rob Landley <rob@landley.net>
date Sun, 25 Oct 2009 03:27:17 -0500
parents 59b256cb1328
children 27337d225f20
files sources/more/native-static-build.sh sources/more/smoketest-all.sh
diffstat 2 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/sources/more/native-static-build.sh	Sat Oct 24 19:41:18 2009 -0500
+++ b/sources/more/native-static-build.sh	Sun Oct 25 03:27:17 2009 -0500
@@ -1,5 +1,12 @@
 #!/bin/bash
 
+# Launch a system image under the emulator and natively build static versions
+# of a few packages.
+
+# Takes the name of the architecture to build for as its first argument,
+# with no arguments builds all architectures in build/system-image-*
+# (If $FORK is set, run them in parallel.)
+
 . sources/functions.sh || exit 1
 
 STAGE_DIR="$(pwd)/build/cron-temp"
--- a/sources/more/smoketest-all.sh	Sat Oct 24 19:41:18 2009 -0500
+++ b/sources/more/smoketest-all.sh	Sun Oct 25 03:27:17 2009 -0500
@@ -1,5 +1,9 @@
 #!/bin/bash
 
+# Run smoketest script on every build/system-image-* architecture.
+
+# If $FORK is set, run them in parallel.
+
 . sources/functions.sh || exit 1
 
 if [ "$1" == "--logs" ]