diff options
author | Koen Kooi <koen@openembedded.org> | 2008-01-04 15:55:50 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-01-04 15:55:50 +0000 |
commit | bb027b7fa2c875e5749ab0ba0d8579ed0add273c (patch) | |
tree | 4ac91ec20d193a4d02881204d80055186c73503f /contrib/angstrom | |
parent | 18bb4e0d01dde69bf7306a33d5eb3e1668a7a1d6 (diff) |
angstrom autobuilder: also build uclibc images
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" |