summaryrefslogtreecommitdiff
path: root/contrib/angstrom/build-release.sh
diff options
context:
space:
mode:
authorPaul Sokolovsky <pmiscml@gmail.com>2008-01-05 10:32:06 +0000
committerPaul Sokolovsky <pmiscml@gmail.com>2008-01-05 10:32:06 +0000
commit0ec8e772610c9800b364c27d8d3ba44284a1abba (patch)
treecaa2915fe75641ccb5e06234de765fd6eb1fead6 /contrib/angstrom/build-release.sh
parentf93a8547d78e11866e8a35c99321909262460a31 (diff)
parentec540b055c4571f47887e5a086a0158e4c2abba7 (diff)
merge of '304f7e476fe8624db6410c0656b7dd8f78ad60f2'
and 'fcfb658bc0012d559f131ce8495a388677380d94'
Diffstat (limited to 'contrib/angstrom/build-release.sh')
-rwxr-xr-xcontrib/angstrom/build-release.sh10
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"