build-release.sh: script that tells the angstrom autobuilder what to build
authorKoen Kooi <koen@openembedded.org>
Tue, 4 Dec 2007 13:19:56 +0000 (13:19 +0000)
committerKoen Kooi <koen@openembedded.org>
Tue, 4 Dec 2007 13:19:56 +0000 (13:19 +0000)
contrib/angstrom/build-release.sh [new file with mode: 0755]

diff --git a/contrib/angstrom/build-release.sh b/contrib/angstrom/build-release.sh
new file mode 100755 (executable)
index 0000000..7f59429
--- /dev/null
@@ -0,0 +1,50 @@
+#!/bin/bash
+
+# No graphics
+for i in ep93xx ixp4xxle ixp4xxbe gumstix-connex efika 
+        do
+          echo "MACHINE = \"$i\"" > conf/auto.conf
+         bitbake minimal-image ; bitbake console-image
+        done
+
+for i in ixp4xxle ixp4xxbe 
+       do
+         echo "MACHINE = \"$i\"" > conf/auto.conf
+         bitbake nslu2-minimal-image
+       done     
+
+# build altboot images for zaurus
+for i in c7x0 poodle tosa akita spitz collie
+        do
+         echo "MACHINE = \"$i\"" > conf/auto.conf
+         bitbake altboot-console-image
+#        echo ANGSTROM_MODE = \"uclibc\" >> conf/auto.conf
+#        bitbake altboot-console-image
+       done  
+
+# graphics, flash storage
+for i in fic-gta01 a780 at91sam9263ek qemuarm h2200 h4000 omap5912osk poodle tosa hx4700 c7x0 spitz akita collie 
+        do
+         echo "MACHINE = \"$i\"" > conf/auto.conf
+         bitbake minimal-image ; bitbake console-image ; bitbake x11-image 
+        done
+
+# graphics, disk storage       
+for i in spitz 
+       do
+         echo "MACHINE = \"$i\"" > conf/auto.conf
+        bitbake -c clean qmake2-native ; bitbake x11-gpe-image ; bitbake x11-pimlico-image ; bitbake x11-office-image
+#         echo ANGSTROM_MODE = \"uclibc\" >> conf/auto.conf
+#       bitbake x11-gpe-mage ; bitbake x11-pimlico-image ; bitbake x11-office-image
+       done 
+
+
+#phones
+for i in fic-gta01 a780 
+        do
+         echo "MACHINE = \"$i\"" > conf/auto.conf
+        bitbake -c clean qmake2-native ;bitbake openmoko-image
+#       echo ANGSTROM_MODE = \"uclibc\" >> conf/auto.conf
+#       bitbake openmoko-image
+       done     
+