diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-12-19 11:38:30 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-12-19 11:38:30 +0000 |
commit | d7cdf8cc805a48bcb9f5dcf9de47ceaac4d35de3 (patch) | |
tree | 4febbb4f1f546d043d65014ebcc8ba45ff95eaa6 | |
parent | a44b2bebc20265955dba5df4c37824671b4d540f (diff) | |
parent | 2fb453a9f4c045a6c74fccc81c1af8bf1e471ba7 (diff) |
merge of '5a00df302fa5f0bd27e8591c24d944d935e7a4e9'
and 'a63f4a9ad21022afe5e9835d5f44018f136084e1'
-rw-r--r-- | classes/package.bbclass | 6 | ||||
-rwxr-xr-x | contrib/angstrom/build-feeds.sh | 56 |
2 files changed, 62 insertions, 0 deletions
diff --git a/classes/package.bbclass b/classes/package.bbclass index 37b9d83d97..ec8c3d97e2 100644 --- a/classes/package.bbclass +++ b/classes/package.bbclass @@ -149,6 +149,12 @@ def runstrip(file, d): bb.debug(1, "runstrip: skip %s" % file) return 0 + # If the file is in a .debug directory it was already stripped, + # don't do it again... + if os.path.dirname(file).endswith(".debug"): + bb.note("Already run strip") + return 0 + strip = bb.data.getVar("STRIP", d, 1) objcopy = bb.data.getVar("OBJCOPY", d, 1) diff --git a/contrib/angstrom/build-feeds.sh b/contrib/angstrom/build-feeds.sh new file mode 100755 index 0000000000..396350066c --- /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" + 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 + |