[oe-commits] org.oe.dev angstrom build feed: replacement for meta-angstrom-2007 recipe, will be deprecated once the problems with the meta package get sorted out

koen commit openembedded-commits at lists.openembedded.org
Wed Dec 19 10:52:25 UTC 2007


angstrom build feed: replacement for meta-angstrom-2007 recipe, will be deprecated once the problems with the meta package get sorted out

Author: koen at openembedded.org
Branch: org.openembedded.dev
Revision: b6fd661c2816118e1632f2e0499aed940910da3d
ViewMTN: http://monotone.openembedded.org/revision/info/b6fd661c2816118e1632f2e0499aed940910da3d
Files:
1
contrib/angstrom/build-feeds.sh
mtn:execute
true
Diffs:

#
# mt diff -r9f4b2e73abbbdeaa5c3a0d12bc2b0f4b4e17f800 -rb6fd661c2816118e1632f2e0499aed940910da3d
#
# 
# 
# add_file "contrib/angstrom/build-feeds.sh"
#  content [94751537edad00e471f43c6fa461aea634716679]
# 
#   set "contrib/angstrom/build-feeds.sh"
#  attr "mtn:execute"
# value "true"
# 
============================================================
--- contrib/angstrom/build-feeds.sh	94751537edad00e471f43c6fa461aea634716679
+++ contrib/angstrom/build-feeds.sh	94751537edad00e471f43c6fa461aea634716679
@@ -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"
+        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 \
+		       boa cherokee lighttpd thttpd \
+		       gpe-gallery gpe-scap pidgin \
+		       gpsdrive navit \
+		       xmms mplayer \
+		       wpa-gui wifi-radar \
+		       gpe-bluetooth bluez-gnome python-pybluez \
+		       abiword gnumeric evince gimp \
+		       flite \
+		       ctorrent \
+		      "
+	do_build
+done
+






More information about the Openembedded-commits mailing list