DivestOS/Scripts/init.sh

68 lines
2.8 KiB
Bash
Raw Normal View History

#!/bin/bash
2017-11-05 15:58:01 +00:00
#DivestOS: A privacy oriented Android distribution
2018-01-19 08:14:25 +00:00
#Copyright (c) 2017-2018 Spot Communications, Inc.
2017-11-05 15:58:01 +00:00
#
#This program is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program. If not, see <https://www.gnu.org/licenses/>.
#Sets settings used by all other scripts
2018-06-02 21:51:18 +00:00
#START OF USER CONFIGURABLE OPTIONS
export androidWorkspace="/mnt/Drive-3/"; #XXX: THIS MUST BE CORRECT TO BUILD!
export DEFAULT_DNS="OpenNIC"; #Sets default DNS, choices: Cloudflare, OpenNIC
2018-06-02 21:51:18 +00:00
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
export HOSTS_BLOCKING=true; #Switch to false to prevent inclusion of our HOSTS file
2018-06-03 11:48:34 +00:00
export OVERCLOCKS_ENABLED=true; #Switch to false to disable overclocks
2018-06-02 22:28:40 +00:00
export STRONG_ENCRYPTION_ENABLED=false; #Switch to true to enable AES-256bit encryption XXX: THIS WILL **DESTROY** EXISTING INSTALLS!
export NON_COMMERCIAL_USE_PATCHES=false; #Switch to false to prevent inclusion of non-commercial use patches
2018-06-02 21:51:18 +00:00
#END OF USER CONFIGURABLE OPTIONS
BUILD_WORKING_DIR=${PWD##*/};
2017-12-30 10:44:05 +00:00
export SIGNING_KEY_DIR=$androidWorkspace"Signing_Keys";
2018-06-02 21:51:18 +00:00
export OTA_PACKAGE_SIGNING_KEY=$SIGNING_KEY_DIR"/releasekey";
export base=$androidWorkspace"Build/$BUILD_WORKING_DIR/";
2017-11-05 19:30:15 +00:00
export prebuiltApps=$androidWorkspace"PrebuiltApps/";
2018-06-02 21:51:18 +00:00
export patches=$androidWorkspace"Patches/$BUILD_WORKING_DIR/";
2017-12-08 23:59:55 +00:00
export cvePatchesLinux=$androidWorkspace"Patches/Linux/";
export cvePatchesAndroid=$androidWorkspace"Patches/Android/";
2017-11-28 17:28:55 +00:00
export dosWallpapers=$androidWorkspace"Patches/Wallpapers/";
2018-04-04 11:52:11 +00:00
export scriptsCommon=$androidWorkspace"Scripts/Common/";
2018-06-02 21:51:18 +00:00
export scripts=$androidWorkspace"Scripts/$BUILD_WORKING_DIR/";
2017-10-30 05:30:10 +00:00
export cveScripts=$scripts"CVE_Patchers/";
2017-10-30 05:30:10 +00:00
export ANDROID_HOME="/home/$USER/Android/Sdk";
2018-04-23 12:59:18 +00:00
export KBUILD_BUILD_USER="emy";
export KBUILD_BUILD_HOST="dosbm";
export ANDROID_JACK_VM_ARGS="-Xmx6144m -Xms512m -Dfile.encoding=UTF-8 -XX:+TieredCompilation";
export JACK_SERVER_VM_ARGUMENTS="${ANDROID_JACK_VM_ARGS}";
2018-04-23 12:59:18 +00:00
export GRADLE_OPTS="-Xmx2048m";
source $scriptsCommon"/Functions.sh";
source $scripts"/Functions.sh";
export LC_ALL=C;
2018-04-23 12:59:18 +00:00
unalias cp;
unalias mv;
unalias rm;
unalias ln;