2019-03-04 02:04:36 -05:00
#!/bin/bash
#DivestOS: A privacy oriented Android distribution
2020-04-14 21:39:51 -04:00
#Copyright (c) 2015-2020 Divested Computing Group
2019-03-04 02:04:36 -05: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/>.
#Last verified: 2019-03-04
#Initialize aliases
#source ../../Scripts/init.sh
#Delete Everything and Sync
#resetWorkspace
#Apply all of our changes
#patchWorkspace
#Build!
#buildDevice [device]
#buildAll
#
#START OF PREPRATION
#
#Download some (non-executable) out-of-tree files for use later on
cd " $DOS_TMP_DIR " ;
if [ " $DOS_HOSTS_BLOCKING " = true ] ; then $DOS_TOR_WRAPPER wget " $DOS_HOSTS_BLOCKING_LIST " -N; fi ;
cd " $DOS_BUILD_BASE " ;
#Accept all SDK licences, not normally needed but Gradle managed apps fail without it
mkdir -p " $ANDROID_HOME /licenses " ;
echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55\nd56f5187479451eabf01fb78af6dfcb131a6481e" > " $ANDROID_HOME /licenses/android-sdk-license " ;
echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > " $ANDROID_HOME /licenses/android-sdk-preview-license " ;
#
#END OF PREPRATION
#
#
#START OF ROM CHANGES
#
#top dir
cp -r " $DOS_PREBUILT_APPS " "Fennec_DOS-Shim" " $DOS_BUILD_BASE " "packages/apps/" ; #Add a shim to install Fennec DOS without actually including the large APK
gpgVerifyDirectory " $DOS_PREBUILT_APPS " "android_vendor_FDroid_PrebuiltApps/packages" ;
cp -r " $DOS_PREBUILT_APPS " "android_vendor_FDroid_PrebuiltApps/." " $DOS_BUILD_BASE " "vendor/fdroid_prebuilt/" ; #Add the prebuilt apps
cp -r " $DOS_PATCHES_COMMON " "android_vendor_divested/." " $DOS_BUILD_BASE " "vendor/divested/" ; #Add our vendor files
2019-04-04 00:31:47 -04:00
enterAndClear "bionic" ;
2019-08-30 02:09:45 -04:00
if [ " $DOS_GRAPHENE_MALLOC " = true ] ; then patch -p1 < " $DOS_PATCHES /android_bionic/0001-HM-Use_HM.patch " ; fi ; #(GrapheneOS)
2019-04-04 00:31:47 -04:00
2019-04-04 23:33:10 -04:00
enterAndClear "bootable/recovery" ;
2020-02-22 18:32:59 -05:00
git revert --no-edit 4d361ff13b5bd61d5a6a5e95063b24b8a37a24ab; #Always enforcing
2020-04-05 14:05:17 -04:00
git revert --no-edit 3f55a863ac34969f95bfb38641747d2fd9939630 865c6c770816f6e8099d6d93e04aeea35091a9d6; #Remove sideload cache, breaks with large files
2020-03-02 19:33:43 -05:00
git revert --no-edit 37d729bf; #Fix USB on most devices
2020-01-08 21:22:35 -05:00
git revert --no-edit fe2901b144c515c5a90b547198aed37c209b5a82; #Resurrect dm-verity
2019-09-28 01:01:47 -04:00
sed -i 's/!= 2048/< 2048/' tools/dumpkey/DumpPublicKey.java; #Allow 4096-bit keys
2019-04-04 23:33:10 -04:00
2019-03-04 02:04:36 -05:00
enterAndClear "build/make" ;
2020-01-08 21:22:35 -05:00
git revert --no-edit 271f6ffa045064abcac066e97f2cb53ccb3e5126 61f7ee9386be426fd4eadc2c8759362edb5bef8; #Add back PicoTTS and language files
2019-09-13 20:26:43 -04:00
patch -p1 < " $DOS_PATCHES_COMMON /android_build/0001-OTA_Keys.patch " ; #add correct keys to recovery for OTA verification
awk -i inplace '!/PRODUCT_EXTRA_RECOVERY_KEYS/' core/product.mk;
2019-03-04 02:04:36 -05:00
sed -i '74i$(my_res_package): PRIVATE_AAPT_FLAGS += --auto-add-overlay' core/aapt2.mk;
2019-09-07 09:56:47 -04:00
2019-03-04 02:04:36 -05:00
enterAndClear "device/qcom/sepolicy-legacy" ;
patch -p1 < " $DOS_PATCHES /android_device_qcom_sepolicy-legacy/0001-Camera_Fix.patch " ; #Fix camera on -user builds XXX: REMOVE THIS TRASH
2019-03-11 22:47:11 -04:00
echo "SELINUX_IGNORE_NEVERALLOWS := true" >> sepolicy.mk; #necessary for -user builds of legacy devices
2019-03-04 02:04:36 -05:00
2019-03-12 20:07:28 -04:00
enterAndClear "external/svox" ;
2020-01-08 21:22:35 -05:00
git revert --no-edit 1419d63b4889a26d22443fd8df1f9073bf229d3d; #Add back Makefiles
2019-03-12 20:07:28 -04:00
sed -i '12iLOCAL_SDK_VERSION := current' pico/Android.mk; #Fix build under Pie
sed -i 's/about to delete/unable to delete/' pico/src/com/svox/pico/LangPackUninstaller.java;
awk -i inplace '!/deletePackage/' pico/src/com/svox/pico/LangPackUninstaller.java;
2019-04-04 00:31:47 -04:00
enterAndClear "frameworks/av" ;
2019-08-30 02:09:45 -04:00
if [ " $DOS_GRAPHENE_MALLOC " = true ] ; then patch -p1 < " $DOS_PATCHES_COMMON /android_frameworks_av/0001-HM-No_RLIMIT_AS.patch " ; fi ; #(GrapheneOS)
2019-04-04 00:31:47 -04:00
2019-03-04 02:04:36 -05:00
enterAndClear "frameworks/base" ;
hardenLocationFWB " $DOS_BUILD_BASE " ;
sed -i 's/DEFAULT_MAX_FILES = 1000;/DEFAULT_MAX_FILES = 0;/' services/core/java/com/android/server/DropBoxManagerService.java; #Disable DropBox
2019-03-04 03:27:18 -05:00
sed -i 's/DEFAULT_MAX_FILES_LOWRAM = 300;/DEFAULT_MAX_FILES_LOWRAM = 0;/' services/core/java/com/android/server/DropBoxManagerService.java; #Disable DropBox
2019-03-04 02:04:36 -05:00
sed -i 's/(notif.needNotify)/(true)/' location/java/com/android/internal/location/GpsNetInitiatedHandler.java; #Notify user when location is requested via SUPL
2019-08-26 14:36:48 -04:00
sed -i 's/entry == null/entry == null || true/' core/java/android/os/RecoverySystem.java; #Skip update compatibiltity check XXX: TEMPORARY FIX
2020-02-17 18:06:39 -05:00
sed -i 's/!Build.isBuildConsistent()/false/' services/core/java/com/android/server/am/ActivityManagerService.java; #Disable fingerprint mismatch warning XXX: TEMPORARY FIX
2020-07-23 04:47:34 -04:00
sed -i 's/DEFAULT_STRONG_AUTH_TIMEOUT_MS = 72 \* 60 \* 60 \* 1000;/DEFAULT_STRONG_AUTH_TIMEOUT_MS = 12 * 60 * 60 * 1000;/' core/java/android/app/admin/DevicePolicyManager.java; #decrease strong auth prompt timeout
2019-03-04 03:27:18 -05:00
if [ " $DOS_MICROG_INCLUDED " = "FULL" ] ; then patch -p1 < " $DOS_PATCHES /android_frameworks_base/0002-Signature_Spoofing.patch " ; fi ; #Allow packages to spoof their signature (microG)
if [ " $DOS_MICROG_INCLUDED " = "FULL" ] ; then patch -p1 < " $DOS_PATCHES /android_frameworks_base/0003-Harden_Sig_Spoofing.patch " ; fi ; #Restrict signature spoofing to system apps signed with the platform key
2019-03-04 02:04:36 -05:00
changeDefaultDNS;
#patch -p1 < "$DOS_PATCHES/android_frameworks_base/0005-Connectivity.patch"; #Change connectivity check URLs to ours
patch -p1 < " $DOS_PATCHES /android_frameworks_base/0006-Disable_Analytics.patch " ; #Disable/reduce functionality of various ad/analytics libraries
2019-08-30 02:09:45 -04:00
patch -p1 < " $DOS_PATCHES /android_frameworks_base/0007-Always_Restict_Serial.patch " ; #always restrict access to Build.SERIAL (GrapheneOS)
patch -p1 < " $DOS_PATCHES /android_frameworks_base/0008-Browser_No_Location.patch " ; #don't grant location permission to system browsers (GrapheneOS)
patch -p1 < " $DOS_PATCHES /android_frameworks_base/0009-SystemUI_No_Permission_Review.patch " ; #allow SystemUI to directly manage Bluetooth/WiFi (GrapheneOS)
2019-09-28 01:01:47 -04:00
if [ " $DOS_GRAPHENE_EXEC " = true ] ; then patch -p1 < " $DOS_PATCHES /android_frameworks_base/0010-Exec_Based_Spawning.patch " ; fi ; #add exec-based spawning support (GrapheneOS)
2019-08-30 02:09:45 -04:00
patch -p1 < " $DOS_PATCHES_COMMON /android_frameworks_base/0003-SUPL_No_IMSI.patch " ; #don't send IMSI to SUPL (MSe)
patch -p1 < " $DOS_PATCHES_COMMON /android_frameworks_base/0004-Fingerprint_Lockout.patch " ; #enable fingerprint failed lockout after 5 attempts (GrapheneOS)
2020-05-17 10:04:48 -04:00
sed -i '301i\ if(packageList.length() > 0) { packageList += ","; } packageList += "net.sourceforge.opencamera";' core/java/android/hardware/Camera.java; #add Open Camera to aux camera whitelist
2020-05-24 14:05:00 -04:00
rm -rf packages/CompanionDeviceManager; #Used to support Android Wear (which hard depends on GMS)
rm -rf packages/PrintRecommendationService; #Creates popups to install proprietary print apps
2019-03-04 02:04:36 -05:00
if [ " $DOS_DEBLOBBER_REMOVE_IMS " = true ] ; then
enterAndClear "frameworks/opt/net/ims" ;
patch -p1 < " $DOS_PATCHES /android_frameworks_opt_net_ims/0001-Fix_Calling.patch " ; #Fix calling when IMS is removed
fi
if enter "kernel/wireguard" ; then
if [ " $DOS_WIREGUARD_INCLUDED " = false ] ; then rm Android.mk; fi ;
#Remove system information from HTTP requests
awk -i inplace '!/USER_AGENT=/' fetch.sh;
2020-06-12 16:27:45 -04:00
sed -i '3iUSER_AGENT="WireGuard-AndroidROMBuild/0.3"' fetch.sh;
2019-03-04 02:04:36 -05:00
fi ;
enterAndClear "lineage-sdk" ;
awk -i inplace '!/LineageWeatherManagerService/' lineage/res/res/values/config.xml; #Disable Weather
if [ " $DOS_DEBLOBBER_REMOVE_AUDIOFX " = true ] ; then awk -i inplace '!/LineageAudioService/' lineage/res/res/values/config.xml; fi ;
2019-04-04 00:31:47 -04:00
enterAndClear "packages/apps/Contacts" ;
2019-08-30 02:09:45 -04:00
patch -p1 < " $DOS_PATCHES_COMMON /android_packages_apps_Contacts/0001-No_Google_Links.patch " ; #Remove Privacy Policy and Terms of Service links (GrapheneOS)
2019-04-04 00:31:47 -04:00
2019-03-04 02:04:36 -05:00
enterAndClear "packages/apps/LineageParts" ;
rm -rf src/org/lineageos/lineageparts/lineagestats/ res/xml/anonymous_stats.xml res/xml/preview_data.xml; #Nuke part of the analytics
patch -p1 < " $DOS_PATCHES /android_packages_apps_LineageParts/0001-Remove_Analytics.patch " ; #Remove analytics
enterAndClear "packages/apps/Settings" ;
2020-01-08 21:22:35 -05:00
git revert --no-edit c240992b4c86c7f226290807a2f41f2619e7e5e8; #don't hide oem unlock
2019-08-30 02:09:45 -04:00
sed -i 's/private int mPasswordMaxLength = 16;/private int mPasswordMaxLength = 48;/' src/com/android/settings/password/ChooseLockPassword.java; #Increase max password length (GrapheneOS)
2019-03-04 02:04:36 -05:00
sed -i 's/if (isFullDiskEncrypted()) {/if (false) {/' src/com/android/settings/accessibility/*AccessibilityService*.java; #Never disable secure start-up when enabling an accessibility service
if [ " $DOS_MICROG_INCLUDED " = "FULL" ] ; then sed -i 's/GSETTINGS_PROVIDER = "com.google.settings";/GSETTINGS_PROVIDER = "com.google.oQuae4av";/' src/com/android/settings/PrivacySettings.java; fi ; #microG doesn't support Backup, hide the options
enterAndClear "packages/apps/SetupWizard" ;
patch -p1 < " $DOS_PATCHES /android_packages_apps_SetupWizard/0001-Remove_Analytics.patch " ; #Remove analytics
2019-09-05 03:46:33 -04:00
enterAndClear "packages/apps/Trebuchet" ;
2020-07-23 04:47:34 -04:00
cp $DOS_BUILD_BASE /vendor/divested/overlay/common/packages/apps/Trebuchet/res/xml/default_workspace_*.xml res/xml/; #TODO: Fix default workspace replacement
2019-09-05 03:46:33 -04:00
2019-03-04 02:04:36 -05:00
enterAndClear "packages/apps/Updater" ;
patch -p1 < " $DOS_PATCHES_COMMON /android_packages_apps_Updater/0001-Server.patch " ; #Switch to our server
patch -p1 < " $DOS_PATCHES /android_packages_apps_Updater/0002-Tor_Support.patch " ; #Add Tor support
2019-03-14 16:09:17 -04:00
sed -i 's/PROP_BUILD_VERSION_INCREMENTAL);/PROP_BUILD_VERSION_INCREMENTAL).replaceAll("\\\\.", "");/' src/org/lineageos/updater/misc/Utils.java; #Remove periods from incremental version
2019-03-04 02:04:36 -05:00
#TODO: Remove changelog
enterAndClear "packages/inputmethods/LatinIME" ;
patch -p1 < " $DOS_PATCHES_COMMON /android_packages_inputmethods_LatinIME/0001-Voice.patch " ; #Remove voice input key
enterAndClear "packages/services/Telephony" ;
2020-01-08 21:22:35 -05:00
git revert --no-edit 99564aaf0417c9ddf7d6aeb10d326e5b24fa8f55;
2019-03-04 02:04:36 -05:00
patch -p1 < " $DOS_PATCHES /android_packages_services_Telephony/0001-PREREQ_Handle_All_Modes.patch " ;
patch -p1 < " $DOS_PATCHES /android_packages_services_Telephony/0002-More_Preferred_Network_Modes.patch " ;
2019-04-04 00:31:47 -04:00
enterAndClear "system/extras"
2019-08-30 02:09:45 -04:00
patch -p1 < " $DOS_PATCHES /android_system_extras/0001-ext4_pad_filenames.patch " ; #FBE: pad filenames more (GrapheneOS)
2019-04-04 00:31:47 -04:00
2019-03-04 02:04:36 -05:00
enterAndClear "system/core" ;
if [ " $DOS_HOSTS_BLOCKING " = true ] ; then cat " $DOS_HOSTS_FILE " >> rootdir/etc/hosts; fi ; #Merge in our HOSTS file
2020-01-08 21:22:35 -05:00
git revert --no-edit b3609d82999d23634c5e6db706a3ecbc5348309a; #Always update recovery
2019-08-30 02:09:45 -04:00
patch -p1 < " $DOS_PATCHES /android_system_core/0001-Harden.patch " ; #Harden mounts with nodev/noexec/nosuid + misc sysfs changes (GrapheneOS)
if [ " $DOS_GRAPHENE_MALLOC " = true ] ; then patch -p1 < " $DOS_PATCHES_COMMON /android_system_core/0001-HM-Increase_vm_mmc.patch " ; fi ; #(GrapheneOS)
2019-03-04 02:04:36 -05:00
enterAndClear "system/sepolicy" ;
patch -p1 < " $DOS_PATCHES /android_system_sepolicy/0001-LGE_Fixes.patch " ; #Fix -user builds for LGE devices
2020-04-30 17:27:13 -04:00
patch -p1 < " $DOS_PATCHES /android_system_sepolicy/0001-LGE_Fixes.patch " --directory= "prebuilts/api/28.0" ;
patch -p1 < " $DOS_PATCHES /android_system_sepolicy/0001-LGE_Fixes.patch " --directory= "prebuilts/api/27.0" ;
patch -p1 < " $DOS_PATCHES /android_system_sepolicy/0001-LGE_Fixes.patch " --directory= "prebuilts/api/26.0" ;
2019-03-11 22:47:11 -04:00
awk -i inplace '!/true cannot be used in user builds/' Android.mk; #Allow ignoring neverallows under -user
2019-03-04 02:04:36 -05:00
enterAndClear "vendor/lineage" ;
2019-09-13 20:26:43 -04:00
rm build/target/product/security/lineage.x509.pem;
2019-03-04 02:04:36 -05:00
rm -rf overlay/common/lineage-sdk/packages/LineageSettingsProvider/res/values/defaults.xml; #Remove analytics
2019-05-08 05:27:51 -04:00
rm -rf verity_tool; #Resurrect dm-verity
2020-02-22 18:32:59 -05:00
rm -rf addonsu;
2019-09-05 03:46:33 -04:00
rm -rf overlay/common/frameworks/base/core/res/res/drawable-*/default_wallpaper.png;
2020-04-25 12:19:54 -04:00
if [ " $DOS_HOSTS_BLOCKING " = true ] ; then awk -i inplace '!/50-lineage.sh/' config/*.mk; fi ; #Make sure our hosts is always used
awk -i inplace '!/PRODUCT_EXTRA_RECOVERY_KEYS/' config/*.mk; #Remove extra keys
awk -i inplace '!/security\/lineage/' config/*.mk; #Remove extra keys
awk -i inplace '!/WeatherProvider/' config/*.mk;
2019-09-04 02:56:27 -04:00
awk -i inplace '!/def_backup_transport/' overlay/common/frameworks/base/packages/SettingsProvider/res/values/defaults.xml;
2020-04-25 12:19:54 -04:00
if [ " $DOS_DEBLOBBER_REMOVE_AUDIOFX " = true ] ; then awk -i inplace '!/AudioFX/' config/*.mk; fi ;
2019-03-04 02:04:36 -05:00
if [ " $DOS_MICROG_INCLUDED " = "NLP" ] ; then sed -i '/Google provider/!b;n;s/com.google.android.gms/org.microg.nlp/' overlay/common/frameworks/base/core/res/res/values/config.xml; fi ;
2020-04-25 12:19:54 -04:00
sed -i 's/LINEAGE_BUILDTYPE := UNOFFICIAL/LINEAGE_BUILDTYPE := dos/' config/*.mk; #Change buildtype
if [ " $DOS_NON_COMMERCIAL_USE_PATCHES " = true ] ; then sed -i 's/LINEAGE_BUILDTYPE := dos/LINEAGE_BUILDTYPE := dosNC/' config/*.mk; fi ;
2019-03-04 02:04:36 -05:00
echo 'include vendor/divested/divestos.mk' >> config/common.mk; #Include our customizations
enter "vendor/divested" ;
if [ " $DOS_MICROG_INCLUDED " = "FULL" ] ; then echo "PRODUCT_PACKAGES += GmsCore GsfProxy FakeStore" >> packages.mk; fi ;
if [ " $DOS_HOSTS_BLOCKING " = false ] ; then echo " PRODUCT_PACKAGES += $DOS_HOSTS_BLOCKING_APP " >> packages.mk; fi ;
2019-03-25 20:30:27 -04:00
echo "PRODUCT_PACKAGES += vendor.lineage.trust@1.0-service" >> packages.mk; #All of our kernels have deny USB patch added
2019-03-04 02:04:36 -05:00
#
#END OF ROM CHANGES
#
#
#START OF DEVICE CHANGES
#
2020-06-20 14:19:40 -04:00
enterAndClear "device/asus/flo" ;
compressRamdisks;
echo "/dev/block/platform/msm_sdcc\.1/by-name/misc u:object_r:misc_block_device:s0" >> sepolicy/file_contexts;
2019-10-18 18:50:48 -04:00
enterAndClear "device/asus/zenfone3" ;
rm -rf libhidl; #breaks other devices
2020-06-08 11:54:40 -04:00
enterAndClear "device/google/bonito" ;
enableVerity; #Resurrect dm-verity
enterAndClear "device/google/crosshatch" ;
enableVerity; #Resurrect dm-verity
2019-09-06 09:38:01 -04:00
enterAndClear "device/google/marlin" ;
2020-01-08 21:22:35 -05:00
git revert --no-edit eeb92c0f094f58b1bdfbaa775d239948f81e915b 8c729e4b016a5b35159992413a22c289ecf2c44c; #remove some carrier blobs
2019-09-06 09:38:01 -04:00
patch -p1 < " $DOS_PATCHES /android_device_google_marlin/0001-Fix_MediaProvider_Deadlock.patch " ; #Fix MediaProvider using 100% CPU (due to broken ppoll on functionfs?)
2019-08-22 12:24:29 -04:00
enterAndClear "device/lge/g2-common" ;
sed -i '3itypeattribute hwaddrs misc_block_device_exception;' sepolicy/hwaddrs.te;
enterAndClear "device/lge/g3-common" ;
2019-10-19 17:56:37 -04:00
patch -p1 < " $DOS_PATCHES /android_device_lge_g3-common/254249.patch " ; #g3-common: Add NFC HAL to proprietary-files
2019-08-22 12:24:29 -04:00
sed -i '3itypeattribute hwaddrs misc_block_device_exception;' sepolicy/hwaddrs.te;
sed -i '1itypeattribute wcnss_service misc_block_device_exception;' sepolicy/wcnss_service.te;
2019-08-27 13:13:48 -04:00
enterAndClear "device/lge/d852" ;
2020-01-08 21:22:35 -05:00
git revert --no-edit dbebbce20b2b303fe13f7078ef54154f9dd5d9e2; #fix nfc path
2019-08-27 13:13:48 -04:00
enterAndClear "device/lge/d855" ;
2020-01-08 21:22:35 -05:00
git revert --no-edit 9a5739e66d0a44347881807c0cc44d7c318c02b8; #fix nfc path
2019-08-27 13:13:48 -04:00
2020-07-12 19:04:01 -04:00
enterAndClear "device/lge/hammerhead" ;
rm -rf bdAddrLoader; #duplicate with mako
2019-03-11 00:55:05 -04:00
enterAndClear "device/lge/mako" ;
2019-09-07 09:56:47 -04:00
#git revert ; #restore releasetools #TODO
2019-09-13 20:26:43 -04:00
smallerSystem;
2019-07-07 18:59:01 -04:00
sed -i 's/1333788672/880803840/' BoardConfig.mk; #don't touch partitions! DOS -user fits with 40M free
2019-03-12 17:18:38 -04:00
awk -i inplace '!/TARGET_RELEASETOOLS_EXTENSIONS/' BoardConfig.mk;
2020-04-19 13:19:22 -04:00
echo "pmf=0" >> wifi/wpa_supplicant_overlay.conf; #Wi-Fi chipset doesn't support PMF
2019-03-11 00:55:05 -04:00
2019-10-20 19:28:56 -04:00
#enterAndClear "device/moto/shamu";
2020-01-08 21:22:35 -05:00
#git revert --no-edit 05fb49518049440f90423341ff25d4f75f10bc0c; #restore releasetools #TODO
2019-09-07 09:56:47 -04:00
2020-02-17 18:06:39 -05:00
enterAndClear "device/oneplus/oneplus2" ;
sed -i 's|etc/permissions/qti_libpermissions.xml|vendor/etc/permissions/qti_libpermissions.xml|' proprietary-files.txt;
2020-02-09 13:52:25 -05:00
2020-02-23 20:51:13 -05:00
enterAndClear "device/oneplus/msm8998-common" ;
2020-04-30 17:27:13 -04:00
patch -p1 < " $DOS_PATCHES_COMMON /android_device_audio/0001-No_Vorbis_Offload.patch " ; #Fix Ogg Vorbis playback
2020-02-23 20:51:13 -05:00
awk -i inplace '!/TARGET_RELEASETOOLS_EXTENSIONS/' BoardConfigCommon.mk; #disable releasetools to fix delta ota generation
2019-10-07 23:47:11 -04:00
enterAndClear "device/oppo/common" ;
awk -i inplace '!/TARGET_RELEASETOOLS_EXTENSIONS/' BoardConfigCommon.mk; #disable releasetools to fix delta ota generation
2019-03-04 02:04:36 -05:00
enterAndClear "device/oppo/msm8974-common" ;
sed -i "s/TZ.BF.2.0-2.0.0134/TZ.BF.2.0-2.0.0134|TZ.BF.2.0-2.0.0137/" board-info.txt; #Suport new TZ firmware https://review.lineageos.org/#/c/178999/
2020-07-12 19:04:01 -04:00
enterAndClear "device/zuk/msm8996-common" ;
awk -i inplace '!/WfdCommon/' msm8996.mk; #fix breakage
2019-09-17 00:55:50 -04:00
enterAndClear "kernel/google/marlin" ;
2020-01-08 21:22:35 -05:00
git revert --no-edit 568f99db3c9a590912f533fa734c46cf7a25dcbd; #Resurrect dm-verity
2019-09-17 00:55:50 -04:00
2020-02-09 13:52:25 -05:00
enterAndClear "kernel/google/wahoo" ;
sed -i 's/asm(SET_PSTATE_UAO(1));/asm(SET_PSTATE_UAO(1)); return 0;/' arch/arm64/mm/fault.c; #fix build with CONFIG_ARM64_UAO
2019-03-04 02:04:36 -05:00
#Make changes to all devices
cd " $DOS_BUILD_BASE " ;
2019-08-05 20:53:50 -04:00
if [ " $DOS_LOWRAM_ENABLED " = true ] ; then find "device" -maxdepth 2 -mindepth 2 -type d -print0 | xargs -0 -n 1 -P 8 -I { } bash -c 'enableLowRam "{}"' ; fi ;
find "hardware/qcom/gps" -name "gps\.conf" -type f -print0 | xargs -0 -n 1 -P 4 -I { } bash -c 'hardenLocationConf "{}"' ;
find "device" -name "gps\.conf" -type f -print0 | xargs -0 -n 1 -P 4 -I { } bash -c 'hardenLocationConf "{}"' ;
find "device" -type d -name "overlay" -print0 | xargs -0 -n 1 -P 4 -I { } bash -c 'hardenLocationFWB "{}"' ;
find "device" -maxdepth 2 -mindepth 2 -type d -print0 | xargs -0 -n 1 -P 8 -I { } bash -c 'enableDexPreOpt "{}"' ;
find "device" -maxdepth 2 -mindepth 2 -type d -print0 | xargs -0 -n 1 -P 8 -I { } bash -c 'hardenUserdata "{}"' ;
2019-10-18 18:50:48 -04:00
find "device" -maxdepth 2 -mindepth 2 -type d -print0 | xargs -0 -n 1 -P 8 -I { } bash -c 'hardenBootArgs "{}"' ;
2019-08-05 20:53:50 -04:00
if [ " $DOS_STRONG_ENCRYPTION_ENABLED " = true ] ; then find "device" -maxdepth 2 -mindepth 2 -type d -print0 | xargs -0 -n 1 -P 8 -I { } bash -c 'enableStrongEncryption "{}"' ; fi ;
find "kernel" -maxdepth 2 -mindepth 2 -type d -print0 | xargs -0 -n 1 -P 4 -I { } bash -c 'hardenDefconfig "{}"' ;
2019-03-04 02:04:36 -05:00
cd " $DOS_BUILD_BASE " ;
2020-02-19 22:07:57 -05:00
deblobAudio;
2019-03-04 02:04:36 -05:00
2019-09-13 20:26:43 -04:00
#Verity
2020-02-19 22:07:57 -05:00
cat " $DOS_SIGNING_KEYS /Amber/verity.x509.pem " >> "kernel/yandex/sdm660/certs/verity.x509.pem" ;
cat " $DOS_SIGNING_KEYS /blueline/verity.x509.pem " >> "kernel/google/crosshatch/certs/verity.x509.pem" ;
cat " $DOS_SIGNING_KEYS /bonito/verity.x509.pem " >> "kernel/google/bonito/certs/verity.x509.pem" ;
cat " $DOS_SIGNING_KEYS /cheeseburger/verity.x509.pem " >> "kernel/oneplus/msm8998/certs/verity.x509.pem" ;
cat " $DOS_SIGNING_KEYS /cheryl/verity.x509.pem " >> "kernel/razer/msm8998/certs/verity.x509.pem" ;
cat " $DOS_SIGNING_KEYS /crosshatch/verity.x509.pem " >> "kernel/google/crosshatch/certs/verity.x509.pem" ;
cat " $DOS_SIGNING_KEYS /dumpling/verity.x509.pem " >> "kernel/oneplus/msm8998/certs/verity.x509.pem" ;
cat " $DOS_SIGNING_KEYS /mata/verity.x509.pem " >> "kernel/essential/msm8998/certs/verity.x509.pem" ;
cat " $DOS_SIGNING_KEYS /sargo/verity.x509.pem " >> "kernel/google/bonito/certs/verity.x509.pem" ;
cat " $DOS_SIGNING_KEYS /taimen/verity.x509.pem " >> "kernel/google/wahoo/certs/verity.x509.pem" ;
cat " $DOS_SIGNING_KEYS /walleye/verity.x509.pem " >> "kernel/google/wahoo/certs/verity.x509.pem" ;
cat " $DOS_SIGNING_KEYS /z2_plus/verity.x509.pem " >> "kernel/zuk/msm8996/certs/verity.x509.pem" ;
cp " $DOS_SIGNING_KEYS /Amber/verifiedboot_relkeys.der.x509 " "kernel/yandex/sdm660/verifiedboot_Amber_dos_relkeys.der.x509" ;
2020-02-17 18:06:39 -05:00
cp " $DOS_SIGNING_KEYS /cheeseburger/verifiedboot_relkeys.der.x509 " "kernel/oneplus/msm8998/verifiedboot_cheeseburger_dos_relkeys.der.x509" ;
2019-09-19 00:12:36 -04:00
cp " $DOS_SIGNING_KEYS /cheryl/verifiedboot_relkeys.der.x509 " "kernel/razer/msm8998/verifiedboot_cheryl_dos_relkeys.der.x509" ;
2020-02-17 18:06:39 -05:00
cp " $DOS_SIGNING_KEYS /dumpling/verifiedboot_relkeys.der.x509 " "kernel/oneplus/msm8998/verifiedboot_dumpling_dos_relkeys.der.x509" ;
2019-09-19 00:12:36 -04:00
cp " $DOS_SIGNING_KEYS /griffin/verifiedboot_relkeys.der.x509 " "kernel/motorola/msm8996/verifiedboot_griffin_dos_relkeys.der.x509" ;
cp " $DOS_SIGNING_KEYS /marlin/verifiedboot_relkeys.der.x509 " "kernel/google/marlin/verifiedboot_marlin_dos_relkeys.der.x509" ;
2020-02-17 18:06:39 -05:00
cp " $DOS_SIGNING_KEYS /oneplus3/verifiedboot_relkeys.der.x509 " "kernel/oneplus/msm8996/verifiedboot_oneplus3_dos_relkeys.der.x509" ;
2019-09-19 00:12:36 -04:00
cp " $DOS_SIGNING_KEYS /sailfish/verifiedboot_relkeys.der.x509 " "kernel/google/marlin/verifiedboot_sailfish_dos_relkeys.der.x509" ;
cp " $DOS_SIGNING_KEYS /z2_plus/verifiedboot_relkeys.der.x509 " "kernel/zuk/msm8996/verifiedboot_z2_plus_dos_relkeys.der.x509" ;
2020-02-19 22:07:57 -05:00
cp " $DOS_SIGNING_KEYS /zenfone3/verifiedboot_relkeys.der.x509 " "kernel/asus/msm8953/verifiedboot_zenfone3_dos_relkeys.der.x509" ;
2019-09-13 20:26:43 -04:00
2019-03-04 02:04:36 -05:00
#Fix broken options enabled by hardenDefconfig()
2019-10-11 13:29:04 -04:00
sed -i "s/CONFIG_STRICT_MEMORY_RWX=y/# CONFIG_STRICT_MEMORY_RWX is not set/" kernel/asus/msm8953/arch/arm64/configs/*_defconfig; #Breaks on compile
2019-09-07 09:56:47 -04:00
sed -i "s/CONFIG_DEBUG_RODATA=y/# CONFIG_DEBUG_RODATA is not set/" kernel/google/msm/arch/arm/configs/lineageos_*_defconfig; #Breaks on compile
2019-03-11 18:19:50 -04:00
sed -i "s/CONFIG_DEBUG_RODATA=y/# CONFIG_DEBUG_RODATA is not set/" kernel/lge/mako/arch/arm/configs/lineageos_*_defconfig; #Breaks on compile
2019-08-30 02:33:53 -04:00
sed -i "s/CONFIG_DEBUG_RODATA=y/# CONFIG_DEBUG_RODATA is not set/" kernel/motorola/msm8974/arch/arm/configs/lineageos_*_defconfig; #Breaks on compile
2019-03-04 02:04:36 -05:00
sed -i "s/CONFIG_STRICT_MEMORY_RWX=y/# CONFIG_STRICT_MEMORY_RWX is not set/" kernel/motorola/msm8996/arch/arm64/configs/*_defconfig; #Breaks on compile
2020-02-17 18:06:39 -05:00
sed -i "s/CONFIG_STRICT_MEMORY_RWX=y/# CONFIG_STRICT_MEMORY_RWX is not set/" kernel/oneplus/msm8996/arch/arm64/configs/lineageos_*_defconfig; #Breaks on compile
2020-04-05 14:05:17 -04:00
sed -i 's/YYLTYPE yylloc;/extern YYLTYPE yylloc;/' kernel/*/*/scripts/dtc/dtc-lexer.l*; #Fix builds with GCC 10
2019-03-04 02:04:36 -05:00
#
#END OF DEVICE CHANGES
#