[Angstrom-devel] Error when searching for libc6

2011-06-01 Thread Gabriel Bosque
Error when searching for libc6-dev package browser:
*Fatal error*: Maximum execution time of 30 seconds exceeded in *
/var/www/angstrom/repo/includes/functions.inc* on line *29*
___
Angstrom-distro-devel mailing list
Angstrom-distro-devel@linuxtogo.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/angstrom-distro-devel


[Angstrom-devel] Koen Kooi : oebb: turn bblayer. conf creation into a for loop to make adding layers less tedious

2011-06-01 Thread Angstrom Git Repos
Module: setup-scripts
Branch: oe-core
Commit: 5cc893ea75e65b1073fc3c2afca420a8c2313765

Author: Koen Kooi 
Date:   Wed Jun  1 10:42:57 2011 +0200

oebb: turn bblayer.conf creation into a for loop to make adding layers less 
tedious

Signed-off-by: Koen Kooi 

---

 oebb.sh |   45 -
 1 files changed, 24 insertions(+), 21 deletions(-)

diff --git a/oebb.sh b/oebb.sh
index 43697ab..5694fa0 100755
--- a/oebb.sh
+++ b/oebb.sh
@@ -253,28 +253,31 @@ BBFILES = ""
 # Add your overlay location to BBLAYERS
 # Make sure to have a conf/layers.conf in there
 BBLAYERS = " \\
-  \${TOPDIR}/sources/meta-angstrom \\
-  \${TOPDIR}/sources/meta-openembedded/meta-oe \\
-  \${TOPDIR}/sources/meta-openembedded/meta-efl \\
-  \${TOPDIR}/sources/meta-openembedded/meta-gpe \\
-  \${TOPDIR}/sources/meta-openembedded/meta-gnome \\
-  \${TOPDIR}/sources/meta-texasinstruments \\
-  \${TOPDIR}/sources/meta-efikamx \\
-  \${TOPDIR}/sources/meta-nslu2 \\
-  \${TOPDIR}/sources/meta-smartphone/meta-htc \\
-  \${TOPDIR}/sources/meta-smartphone/meta-nokia \\
-  \${TOPDIR}/sources/meta-smartphone/meta-openmoko \\
-  \${TOPDIR}/sources/meta-smartphone/meta-palm \\
-  \${TOPDIR}/sources/meta-smartphone/meta-zaurus \\
-  \${TOPDIR}/sources/meta-intel/meta-sugarbay \\
-  \${TOPDIR}/sources/meta-intel/meta-crownbay \\
-  \${TOPDIR}/sources/meta-intel/meta-emenlow \\
-  \${TOPDIR}/sources/meta-intel/meta-fishriver \\
-  \${TOPDIR}/sources/meta-intel/meta-jasperforest \\
-  \${TOPDIR}/sources/meta-intel/meta-n450 \\
-  \${TOPDIR}/sources/openembedded-core/meta \\
-  "
 _EOF
+for layer in meta-angstrom \
+ meta-openembedded/meta-oe \
+ meta-openembedded/meta-efl \
+ meta-openembedded/meta-gpe \
+ meta-openembedded/meta-gnome \
+ meta-texasinstruments \
+ meta-efikamx \
+ meta-nslu2 \
+ meta-smartphone/meta-htc \
+ meta-smartphone/meta-nokia \
+ meta-smartphone/meta-openmoko \
+ meta-smartphone/meta-palm \
+ meta-smartphone/meta-zaurus \
+ meta-intel/meta-sugarbay \
+ meta-intel/meta-crownbay \
+ meta-intel/meta-emenlow \
+ meta-intel/meta-fishriver \
+ meta-intel/meta-jasperforest \
+ sources/meta-intel/meta-n450 \
+ openembedded-core/meta 
+do
+ echo "  \${TOPDIR}/sources/$layer \\" >> 
${OE_BUILD_DIR}/conf/bblayers.conf
+done
+echo '  "' >> ${OE_BUILD_DIR}/conf/bblayers.conf
 fi
 
 # There's no need to rewrite site.conf when changing MACHINE


___
Angstrom-distro-devel mailing list
Angstrom-distro-devel@linuxtogo.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/angstrom-distro-devel