view more/for-each-target.sh @ 1219:a23ee1b6b8de

Break link (touch gets confused that /mnt is a read-only squashfs).
author Rob Landley <rob@landley.net>
date Sat, 21 Aug 2010 02:47:39 -0500
parents 300e6d919d86
children dadbb8873a36
line wrap: on
line source

#!/bin/bash

# Iterate through every target architecture, running rest of command line
# on each $TARGET.

# If $FORK is set, run them in parallel with filtered output.

. sources/functions.sh || exit 1

[ -z "${ARCHES}" ] &&
  ARCHES="$(cd sources/targets/; ls | grep -v '^hw-')"

for TARGET in $ARCHES
do
  maybe_fork "$* | maybe_quiet"
done

wait