Commit 06145ff4 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru
Browse files

Adapt to new build environemt.

-Build with 32 threads instead of 8
-Force case-insensitive sorting (which was the de-facto standard)

Change-Id: Ieba8cbe99b63bedae2c51cf28b0bdb1c6130138d
parent e80457e2
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment