diff options
author | Matthias Hentges <oe@hentges.net> | 2008-01-05 13:35:51 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2008-01-05 13:35:51 +0000 |
commit | 111fa62d00b81667cf48868b6176ab13187d052d (patch) | |
tree | 1b95e105fba9208ab114306181f562086e6998aa /contrib/angstrom | |
parent | 5cdd04b8419a6e20ff23bbe9f11c970eb0fbcabf (diff) | |
parent | 0ec8e772610c9800b364c27d8d3ba44284a1abba (diff) |
merge of '32cafe5ca6724aa6333ef32aa6a5604b86123925'
and '8efc63b43d352dc8bc16998f5461a0649ac0a66d'
Diffstat (limited to 'contrib/angstrom')
-rwxr-xr-x | contrib/angstrom/build-release.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/angstrom/build-release.sh b/contrib/angstrom/build-release.sh index 3c0bda25fe..2f882450c8 100755 --- a/contrib/angstrom/build-release.sh +++ b/contrib/angstrom/build-release.sh @@ -1,6 +1,6 @@ #!/bin/bash -DO_UCLIBC=0 +DO_UCLIBC=1 do_build() { echo "MACHINE = \"$BUILD_MACHINE\"" > conf/auto.conf @@ -20,6 +20,12 @@ do_build() { then BUILD_MODE="uclibc" echo 'ANGSTROM_MODE = "uclibc"' >> conf/auto.conf + + if [ "$BUILD_CLEAN" != "" ] + then + bitbake -c clean $BUILD_CLEAN + fi + for target in $BUILD_TARGETS do bitbake $target && do_report_success @@ -43,7 +49,7 @@ do_report_success() { # No graphics -for machine in ep93xx gumstix-connex gumstix-verdex efika omap5912osk +for machine in ep93xx gumstix-connex gumstix-verdex efika dht-walnut omap5912osk do BUILD_MACHINE=$machine BUILD_CLEAN="libtool-cross base-files" |