OSDN Git Service

Adapt to new build environemt.
authorJean-Baptiste Queru <jbq@google.com>
Wed, 20 Oct 2010 00:48:31 +0000 (17:48 -0700)
committerJean-Baptiste Queru <jbq@google.com>
Mon, 4 Apr 2011 20:52:59 +0000 (13:52 -0700)
-Build with 32 threads instead of 8
-Force case-insensitive sorting (which was the de-facto standard)

Change-Id: Ieba8cbe99b63bedae2c51cf28b0bdb1c6130138d

generate-blob-scripts.sh

index 625cfb8..a610648 100755 (executable)
@@ -56,20 +56,20 @@ for DEVICENAME in $DEVICES
 do
   rm -rf out
   lunch full_$DEVICENAME-user
-  make -j8
+  make -j32
   cat out/target/product/$DEVICENAME/installed-files.txt |
     cut -b 15- |
-    sort > $ARCHIVEDIR/$DEVICENAME-with.txt
+    sort -f > $ARCHIVEDIR/$DEVICENAME-with.txt
 done
 rm -rf vendor
 for DEVICENAME in $DEVICES
 do
   rm -rf out
   lunch full_$DEVICENAME-user
-  make -j8
+  make -j32
   cat out/target/product/$DEVICENAME/installed-files.txt |
     cut -b 15- |
-    sort > $ARCHIVEDIR/$DEVICENAME-without.txt
+    sort -f > $ARCHIVEDIR/$DEVICENAME-without.txt
 done
 
 for DEVICENAME in $DEVICES