view run-from-build.sh @ 627:e6c9da01349a

Take a stab at a cron job script.
author Rob Landley <rob@landley.net>
date Tue, 24 Feb 2009 19:40:09 -0600
parents 518c8e257b3d
children d658f28e36ae
line wrap: on
line source

#!/bin/bash

SAVEPATH="$PATH"
source sources/include.sh
PATH="$SAVEPATH"

cd "${BUILD}/system-image-$ARCH_NAME" || exit 1

# A little paranoia.
[ -f "image-${ARCH}.ext2" ] && fsck.ext2 -y "image-${ARCH}.ext2" </dev/null

# And run it, using the distccd we built (if necessary) and the cross-compiler.

PATH="$HOSTTOOLS:$PATH" ./run-emulator.sh --make-hdb 2048 --memory 256 \
	--with-distcc "${BUILD}/cross-compiler-${ARCH}"