view build.sh @ 225:957c1c3b7766

An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which I haven't got an emulator for, and qemu's m68k support doesn't include a non-coldfire board yet.
author Rob Landley <rob@landley.net>
date Thu, 11 Oct 2007 01:48:07 -0500
parents f8dac531cbb5
children b2e353ae7566
line wrap: on
line source

#!/bin/bash

# If run with no arguments, list architectures.

if [ $# -eq 0 ]
then
  echo "Usage: $0 ARCH [ARCH...]"
  ./include.sh
  exit 1
fi

# Download source code and build host tools.

./download.sh || exit 1
time ./host-tools.sh || exit 1

# Run the steps in order for each architecture listed on the command line
for i in "$@"
do
  echo "=== Building ARCH $i"
  time ./cross-compiler.sh $i || exit 1
  echo "=== native ($i)"
  time ./mini-native.sh $i || exit 1
  time ./package-mini-native.sh $i || exit 1
done