diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-12-20 12:58:48 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-12-20 12:58:48 +0000 |
commit | 60d97c2ce048b27e3fe6535d57300b9a1c9f9547 (patch) | |
tree | 39f61d251ad4cf5cafbc517328dfc1aca1013c56 /contrib | |
parent | dd256cf8cb3bac042a2bc1e305c088bc3a31b11c (diff) | |
parent | f8bf8412979ba44c3a86b87dacfcc429d4327ece (diff) |
merge of '95bd611a11ed2faa8d23507a857c2668a96587fa'
and 'fd3305e1333a4c25b9d300f0b3c39319801c2869'
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/angstrom/build-feeds.sh | 56 | ||||
-rwxr-xr-x | contrib/angstrom/build-release.sh | 12 |
2 files changed, 62 insertions, 6 deletions
diff --git a/contrib/angstrom/build-feeds.sh b/contrib/angstrom/build-feeds.sh new file mode 100755 index 0000000000..efa622d236 --- /dev/null +++ b/contrib/angstrom/build-feeds.sh @@ -0,0 +1,56 @@ +#!/bin/bash + +DO_UCLIBC=0 + +do_build() { + echo "MACHINE = \"$BUILD_MACHINE\"" > conf/auto.conf + + BUILD_MODE="glibc" + if [ "$BUILD_CLEAN" != "" ] + then + bitbake -c clean $BUILD_CLEAN + fi + + for target in $BUILD_TARGETS + do + bitbake $target && do_report_success + done + + if [ $DO_UCLIBC = 1 ] + then + BUILD_MODE="uclibc" + echo 'ANGSTROM_MODE = "uclibc"' >> conf/auto.conf + for target in $BUILD_TARGETS + do + bitbake $target && do_report_success + done + fi +} + +do_report_success() { + + echo "$(date -u +%s) $target $BUILD_MODE $machine" >> autobuilder-feed.log +} + +for machine in ep93xx gumstix-connex gumstix-verdex efika omap5912osk ixp4xxle ixp4xxbe c7x0 poodle tosa akita spitz collie fic-gta01 a780 at91sam9263ek qemuarm h2200 h3900 h4000 poodle tosa hx4700 c7x0 spitz akita collie spitz +do + BUILD_MACHINE=$machine + BUILD_CLEAN="libtool-cross qmake2-native" + BUILD_TARGETS="gcc binutils automake autoconf m4 pkgconfig \ + task-proper-tools mc screen \ + mono perl python ruby \ + gtk+ qt-x11-free qt4-x11-free \ + gpe-mini-browser midori minimo openmoko-browser2 webkit-gtklauncher \ + apache2 boa cherokee lighttpd thttpd \ + gpe-gallery gpe-scap notecase pidgin \ + gpsdrive navit \ + xmms mplayer quasar \ + wpa-gui wifi-radar \ + gpe-bluetooth bluez-gnome python-pybluez \ + abiword gnumeric evince gimp \ + flite \ + ctorrent \ + " + do_build +done + diff --git a/contrib/angstrom/build-release.sh b/contrib/angstrom/build-release.sh index 8b30212790..6f86cfe728 100755 --- a/contrib/angstrom/build-release.sh +++ b/contrib/angstrom/build-release.sh @@ -95,10 +95,10 @@ do done # populate feeds -for machine in ep93xx a780 efika collie ixp4xxbe -do - BUILD_MACHINE=$machine - BUILD_TARGETS="meta-angstrom-2007" - do_build -done +#for machine in ep93xx a780 efika collie ixp4xxbe +#do +# BUILD_MACHINE=$machine +# BUILD_TARGETS="meta-angstrom-2007" +# do_build +#done |