diff options
| author | Michael Lauer <mickey@vanille-media.de> | 2007-12-04 18:06:56 +0000 |
|---|---|---|
| committer | Michael Lauer <mickey@vanille-media.de> | 2007-12-04 18:06:56 +0000 |
| commit | 5b273dfd5fd8f6e2863e38d7fd245b10b29a4a3d (patch) | |
| tree | 169dd83ba91d011aa5c504ab329efeec5c86141d /contrib | |
| parent | a36d4624c3e3fae02c9890029d8b2c16c296e4ef (diff) | |
| parent | 90d3ceec768b1dc13d230d45e463178e6f4d9467 (diff) | |
merge of '96d7870254b4856e54bb9917bf206a20c8a2143b'
and 'af1fa1ff21fbbd82c0b12c754f37cc126ee70b06'
Diffstat (limited to 'contrib')
| -rwxr-xr-x | contrib/angstrom/build-release.sh | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/contrib/angstrom/build-release.sh b/contrib/angstrom/build-release.sh new file mode 100755 index 0000000000..7f594298b9 --- /dev/null +++ b/contrib/angstrom/build-release.sh @@ -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 + |
