25 lines
440 B
Bash
25 lines
440 B
Bash
START=`date +%s`
|
|
export RELAX_USES_LIBRARY_CHECK=true
|
|
export USE_CCACHE=1
|
|
export CCACHE_SIZE=100G
|
|
echo "ready to build"
|
|
|
|
cp update.sh prebuilts/prebuiltapks/foss_nano
|
|
cd prebuilts/prebuiltapks/foss_nano
|
|
bash update.sh
|
|
cd ../../..
|
|
|
|
source build/envsetup.sh
|
|
export WITHOUT_CHECK_API=true
|
|
|
|
lunch lineage_a64_bvN-userdebug
|
|
|
|
make installclean
|
|
make -j4 systemimage
|
|
make vndk-test-sepolicy
|
|
cp $OUT/system.img images/LeOS-19.1-VNDK-a64-bvN.img
|
|
|
|
|
|
|
|
|