Misc tweaks

This commit is contained in:
Tad 2018-06-03 08:24:23 -04:00
parent 2ac0a5cd15
commit 3fb3824f6d
3 changed files with 12 additions and 8 deletions

View file

@ -21,6 +21,7 @@
export androidWorkspace="/mnt/Drive-3/"; #XXX: THIS MUST BE CORRECT TO BUILD!
export DEFAULT_DNS="OpenNIC"; #Sets default DNS, choices: Cloudflare, OpenNIC
export GLONASS_FORCED_ENABLE=false; #Enables GLONASS on all devices
export MALWARE_SCAN_ENABLED=true; #Set true to perform a fast scan on patchWorkspace() and a through scan on buildAll()
export MALWARE_SCAN_SETTING="quick"; #buildAll() scan speed. Options are quick, extra, slow, full
export MICROG_INCLUDED=true; #Switch to false to prevent inclusion of microG
@ -38,9 +39,6 @@ else
return 1;
fi;
export SIGNING_KEY_DIR=$androidWorkspace"Signing_Keys";
export OTA_PACKAGE_SIGNING_KEY=$SIGNING_KEY_DIR"/releasekey";
export base=$androidWorkspace"Build/$BUILD_WORKING_DIR/";
if [ ! -d $base ]; then
echo "Path mismatch! Please update init.sh!";
@ -61,6 +59,9 @@ if [ ! -d $scripts ]; then
fi;
export cveScripts=$scripts"CVE_Patchers/";
export SIGNING_KEY_DIR=$androidWorkspace"Signing_Keys";
export OTA_PACKAGE_SIGNING_KEY=$SIGNING_KEY_DIR"/releasekey";
export ANDROID_HOME="/home/$USER/Android/Sdk";
export KBUILD_BUILD_USER="emy";