[pisa-src] r2256 - trunk/tools/pisa_autobuild.sh

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Wed, 07 Apr 2010 19:42:21 +0200

Author: biurrun
Date: Wed Apr  7 19:42:21 2010
New Revision: 2256

Log:
autobuild: Set the CONFIGURATION variable for OpenWrt and Scratchbox.

Modified:
   trunk/tools/pisa_autobuild.sh

Modified: trunk/tools/pisa_autobuild.sh
==============================================================================
--- trunk/tools/pisa_autobuild.sh       Wed Apr  7 19:41:30 2010        (r2255)
+++ trunk/tools/pisa_autobuild.sh       Wed Apr  7 19:42:21 2010        (r2256)
@@ -102,6 +102,7 @@
 compile fullfeatured --disable-debug --enable-logging --enable-performance
 
 # Compile PISA within an OpenWrt checkout
+CONFIGURATION="OpenWrt ARM crosscompile"
 run_program "cp pisa*tar.gz $OPENWRT_DIR/dl"
 cd $OPENWRT_DIR || cleanup 1
 run_program "rm -rf package/pisa"
@@ -110,6 +111,7 @@
 run_program "make -j17 package/pisa-install V=99"
 
 # Crosscompile PISA in a scratchbox environment.
+CONFIGURATION="Scratchbox ARM crosscompile"
 cd $SCRATCHBOX_HOME || cleanup 1
 run_program "rm -rf pisa-[0-9-]* pisa_*.changes pisa_*.deb"
 run_program "tar -xzf $CHECKOUT_DIR/pisa-[0-9-]*.tar.gz"

Other related posts:

  • » [pisa-src] r2256 - trunk/tools/pisa_autobuild.sh - Diego Biurrun