view run-from-build.sh @ 644:29e4fdad2b11

Update linux and busybox versions.
author Rob Landley <rob@landley.net>
date Tue, 24 Mar 2009 15:55:22 -0500
parents d658f28e36ae
children 950ef7de1cf9
line wrap: on
line source

#!/bin/bash

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

# Some distros don't put /sbin:/usr/sbin in the $PATH for non-root users.
export PATH="$SAVEPATH"
[ -z "$(which mke2fs)" ] && PATH=/sbin:/usr/sbin:$PATH

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}"