aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2008-01-08 14:21:21 +0000
committerKoen Kooi <koen@openembedded.org>2008-01-08 14:21:21 +0000
commite44079675bdf727ba85ef3e7e2054623ac08924e (patch)
tree7fc655cb4c9e494ac6fa4e4dec169fca6b791c30 /contrib
parentf4894e2b203a8537256594c57abcbdbae8427742 (diff)
downloadopenembedded-e44079675bdf727ba85ef3e7e2054623ac08924e.tar.gz
angstrom build feeds: also rebuild uclibc stuff when needed and add more apps
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/angstrom/build-feeds.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/contrib/angstrom/build-feeds.sh b/contrib/angstrom/build-feeds.sh
index ac5164c3e0..eccf28f4f8 100755
--- a/contrib/angstrom/build-feeds.sh
+++ b/contrib/angstrom/build-feeds.sh
@@ -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
@@ -36,7 +42,7 @@ for machine in ep93xx gumstix-connex gumstix-verdex efika dht-walnut omap5912osk
do
BUILD_MACHINE=$machine
BUILD_CLEAN="libtool-cross qmake-native qmake2-native"
- BUILD_TARGETS="texinfo flex bison gperf gcc binutils make automake autoconf m4 pkgconfig \
+ BUILD_TARGETS="texinfo flex bison gperf gcc binutils make automake autoconf m4 pkgconfig distcc \
usbutils pciutils mtd-utils usbview hal \
task-proper-tools mc screen findutils \
mono perl python ruby \
@@ -63,6 +69,8 @@ do
xserver-kdrive xserver-xorg \
xf86-video-fbdev xf86-video-ati xf86-video-vesa \
xf86-input-evdev xf86-input-keyboard xf86-input-mouse \
+ task-opie \
+ task-openmoko-base task-openmoko-debug task-openmoko-examples task-openmoko-feed task-openmoko-games task-openmoko-linux task-openmoko-native-sdk task-openmoko-net task-openmoko-phone task-openmoko-pim task-openmoko-ui \
"
do_build
done