2016-12-27 11:40:16 -05:00
#!/bin/bash
2017-11-05 10:58:01 -05:00
#DivestOS: A privacy oriented Android distribution
2020-04-14 21:39:51 -04:00
#Copyright (c) 2015-2020 Divested Computing Group
2017-11-05 10:58:01 -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/>.
2016-12-27 11:40:16 -05:00
2018-04-27 23:49:40 -04:00
#Last verified: 2018-04-27
2018-01-15 15:50:29 -05:00
#Initialize aliases
2018-07-09 16:04:09 -04:00
#source ../../Scripts/init.sh
2018-01-15 15:50:29 -05:00
2017-10-29 02:43:38 -04:00
#Delete Everything and Sync
2018-01-15 15:50:29 -05:00
#resetWorkspace
2017-03-14 11:11:05 -04:00
2017-10-29 02:43:38 -04:00
#Apply all of our changes
2018-01-15 15:50:29 -05:00
#patchWorkspace
2016-12-27 11:40:16 -05:00
2017-05-21 17:28:36 -04:00
#Build!
2018-01-15 15:50:29 -05:00
#buildDevice [device]
#buildAll
2016-12-27 11:40:16 -05:00
2017-11-11 06:46:58 -05:00
#Generate firmware deblobber
#mka firmware_deblobber
2016-12-27 11:40:16 -05:00
#
#START OF PREPRATION
#
2017-10-19 21:34:13 -04:00
#Download some (non-executable) out-of-tree files for use later on
2018-07-04 15:35:16 -04:00
cd " $DOS_TMP_DIR " ;
2019-01-14 03:12:50 -05:00
if [ " $DOS_HOSTS_BLOCKING " = true ] ; then $DOS_TOR_WRAPPER wget " $DOS_HOSTS_BLOCKING_LIST " -N; fi ;
2018-06-29 00:55:21 -04:00
cd " $DOS_BUILD_BASE " ;
2016-12-27 11:40:16 -05:00
#Accept all SDK licences, not normally needed but Gradle managed apps fail without it
2018-04-23 08:59:18 -04:00
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 " ;
2016-12-27 11:40:16 -05:00
#
#END OF PREPRATION
#
#
#START OF ROM CHANGES
#
2017-12-19 20:01:17 -05:00
#top dir
2018-06-29 00:55:21 -04:00
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
2018-08-30 23:44:23 -04:00
gpgVerifyDirectory " $DOS_PREBUILT_APPS " "android_vendor_FDroid_PrebuiltApps/packages" ;
2018-06-29 00:55:21 -04:00
cp -r " $DOS_PREBUILT_APPS " "android_vendor_FDroid_PrebuiltApps/." " $DOS_BUILD_BASE " "vendor/fdroid_prebuilt/" ; #Add the prebuilt apps
2018-07-12 22:19:30 -04:00
cp -r " $DOS_PATCHES_COMMON " "android_vendor_divested/." " $DOS_BUILD_BASE " "vendor/divested/" ; #Add our vendor files
2017-12-19 20:01:17 -05:00
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
2018-04-23 08:59:18 -04:00
enterAndClear "bootable/recovery" ;
2020-02-22 18:32:59 -05:00
git revert --no-edit 3c0d796b79c7a1ee904e0cef7c0f2e20bf84c237; #remove sideload cache, breaks with large files
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES /android_bootable_recovery/0001-Squash_Menus.patch " ; #What's a back button?
2018-01-20 07:36:08 -05:00
2018-04-23 08:59:18 -04:00
enterAndClear "build" ;
2019-09-13 20:26:43 -04:00
patch -p1 < " $DOS_PATCHES /android_build/0001-OTA_Keys.patch " ; #add correct keys to recovery for OTA verification
2018-07-13 21:43:03 -04:00
sed -i '50i$(my_res_package): PRIVATE_AAPT_FLAGS += --auto-add-overlay' core/aapt2.mk;
sed -i '296iLOCAL_AAPT_FLAGS += --auto-add-overlay' core/package_internal.mk;
2016-12-27 11:40:16 -05:00
2018-04-23 08:59:18 -04:00
enterAndClear "device/qcom/sepolicy" ;
2019-10-19 17:56:37 -04:00
patch -p1 < " $DOS_PATCHES /android_device_qcom_sepolicy/248649.patch " ; #msm_irqbalance: Allow read for stats and interrupts
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES /android_device_qcom_sepolicy/0001-Camera_Fix.patch " ; #Fix camera on user builds XXX: REMOVE THIS TRASH
2017-05-29 20:08:55 -04:00
2020-07-12 19:04:01 -04:00
enterAndClear "external/dng_sdk" ;
git pull "https://github.com/LineageOS/android_external_dng_sdk" refs/changes/66/280666/1 #n-asb-2020-07
2020-05-10 22:26:44 -04:00
2018-04-23 08:59:18 -04:00
enterAndClear "external/sqlite" ;
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES /android_external_sqlite/0001-Secure_Delete.patch " ; #Enable secure_delete by default (CopperheadOS-13.0)
2016-12-27 11:40:16 -05:00
2019-04-04 00:31:47 -04:00
enterAndClear "frameworks/av" ;
2019-11-28 12:03:40 -05:00
patch -p1 < " $DOS_PATCHES /android_frameworks_av/212799.patch " ; #FLAC extractor CVE-2017-0592. alt: 212827/174106
2019-08-30 02:09:45 -04:00
if [ " $DOS_GRAPHENE_MALLOC " = true ] ; then patch -p1 < " $DOS_PATCHES /android_frameworks_av/0001-HM-No_RLIMIT_AS.patch " ; fi ; #(GrapheneOS)
2019-04-04 00:31:47 -04:00
2018-04-23 08:59:18 -04:00
enterAndClear "frameworks/base" ;
2019-02-08 20:58:15 -05:00
hardenLocationFWB " $DOS_BUILD_BASE " ;
2020-01-08 21:22:35 -05:00
git revert --no-edit 0326bb5e41219cf502727c3aa44ebf2daa19a5b3; #re-enable doze on devices without gms
2017-05-29 20:08:55 -04:00
sed -i 's/DEFAULT_MAX_FILES = 1000;/DEFAULT_MAX_FILES = 0;/' services/core/java/com/android/server/DropBoxManagerService.java; #Disable DropBox
2019-02-09 14:20:19 -05:00
sed -i 's/(notif.needNotify)/(true)/' location/java/com/android/internal/location/GpsNetInitiatedHandler.java; #Notify user when location is requested via SUPL
2020-06-20 14:19:40 -04:00
sed -i 's/DEFAULT_STRONG_AUTH_TIMEOUT_MS = 72 \* 60 \* 60 \* 1000;/DEFAULT_STRONG_AUTH_TIMEOUT_MS = 6 * 60 * 60 * 1000;/' core/java/android/app/admin/DevicePolicyManager.java; #decrease strong auth prompt timeout
2019-10-19 17:56:37 -04:00
patch -p1 < " $DOS_PATCHES /android_frameworks_base/248599.patch " ; #Make SET_TIME_ZONE permission match SET_TIME
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES /android_frameworks_base/0001-Reduced_Resolution.patch " ; #Allow reducing resolution to save power TODO: Add 800x480
if [ " $DOS_MICROG_INCLUDED " = "FULL" ] ; then patch -p1 < " $DOS_PATCHES /android_frameworks_base/0003-Signature_Spoofing.patch " ; fi ; #Allow packages to spoof their signature (microG)
if [ " $DOS_MICROG_INCLUDED " = "FULL" ] ; then patch -p1 < " $DOS_PATCHES /android_frameworks_base/0005-Harden_Sig_Spoofing.patch " ; fi ; #Restrict signature spoofing to system apps signed with the platform key
2018-06-24 01:27:33 -04:00
changeDefaultDNS;
2018-06-29 00:55:21 -04:00
#patch -p1 < "$DOS_PATCHES/android_frameworks_base/0007-Connectivity.patch"; #Change connectivity check URLs to ours
patch -p1 < " $DOS_PATCHES /android_frameworks_base/0008-Disable_Analytics.patch " ; #Disable/reduce functionality of various ad/analytics libraries
2019-08-30 02:09:45 -04:00
patch -p1 < " $DOS_PATCHES_COMMON /android_frameworks_base/0001-Browser_No_Location.patch " ; #don't grant location permission to system browsers (GrapheneOS)
patch -p1 < " $DOS_PATCHES_COMMON /android_frameworks_base/0003-SUPL_No_IMSI.patch " ; #don't send IMSI to SUPL (MSe)
2020-05-24 14:05:00 -04:00
rm -rf packages/Osu; #Automatic Wi-Fi connection non-sense
rm -rf packages/PrintRecommendationService; #Creates popups to install proprietary print apps
2017-05-12 13:39:14 -04:00
2018-06-29 00:55:21 -04:00
if [ " $DOS_DEBLOBBER_REMOVE_IMS " = true ] ; then
2018-06-13 07:07:47 -04:00
enterAndClear "frameworks/opt/net/ims" ;
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES /android_frameworks_opt_net_ims/0001-Fix_Calling.patch " ; #Fix calling when IMS is removed
2018-06-13 07:07:47 -04:00
fi ;
2017-05-04 21:42:25 -04:00
2018-04-23 08:59:18 -04:00
enterAndClear "frameworks/opt/net/wifi" ;
2019-08-30 02:09:45 -04:00
#Fix an issue when permision review is enabled that prevents using the Wi-Fi quick tile (AndroidHardening)
2017-12-05 11:31:20 -05:00
#See https://github.com/CopperheadOS/platform_frameworks_opt_net_wifi/commit/c2a2f077a902226093b25c563e0117e923c7495b
2017-12-05 18:22:31 -05:00
sed -i 's/boolean mPermissionReviewRequired/boolean mPermissionReviewRequired = false/' service/java/com/android/server/wifi/WifiServiceImpl.java;
2017-12-05 11:31:20 -05:00
awk -i inplace '!/mPermissionReviewRequired = Build.PERMISSIONS_REVIEW_REQUIRED/' service/java/com/android/server/wifi/WifiServiceImpl.java;
awk -i inplace '!/\|\| context.getResources\(\).getBoolean\(/' service/java/com/android/server/wifi/WifiServiceImpl.java;
awk -i inplace '!/com.android.internal.R.bool.config_permissionReviewRequired/' service/java/com/android/server/wifi/WifiServiceImpl.java;
2019-02-01 02:52:54 -05:00
enterAndClear "hardware/ti/omap4" ;
patch -p1 < " $DOS_PATCHES /android_hardware_ti_omap4/0001-tuna-camera.patch " ; #fix camera on tuna
2019-10-19 17:56:37 -04:00
enterAndClear "hardware/ti/wlan" ;
#krack fixes
git apply " $DOS_PATCHES /android_hardware_ti_wlan/209209.patch " ; #wl12xx: Update SR and MR firmwares versions
git apply " $DOS_PATCHES /android_hardware_ti_wlan/209210.patch " ; #wl12xx: Update SR PLT firmwares
2019-03-04 00:05:12 -05:00
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.23' fetch.sh;
2019-03-04 00:05:12 -05:00
fi ;
2018-04-23 08:59:18 -04:00
enterAndClear "packages/apps/CMParts" ;
rm -rf src/org/cyanogenmod/cmparts/cmstats/ res/xml/anonymous_stats.xml res/xml/preview_data.xml; #Nuke part of CMStats
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES /android_packages_apps_CMParts/0001-Remove_Analytics.patch " ; #Remove the rest of CMStats
patch -p1 < " $DOS_PATCHES /android_packages_apps_CMParts/0002-Reduced_Resolution.patch " ; #Allow reducing resolution to save power
2017-05-29 20:08:55 -04:00
2018-04-23 08:59:18 -04:00
enterAndClear "packages/apps/PackageInstaller" ;
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES /android_packages_apps_PackageInstaller/64d8b44.diff " ; #Fix an issue with Permission Review
2017-12-04 22:48:33 -05:00
2018-04-23 08:59:18 -04:00
enterAndClear "packages/apps/Settings" ;
2020-01-08 21:22:35 -05:00
git revert --no-edit 2ebe6058c546194a301c1fd22963d6be4adbf961; #don't hide oem unlock
2019-10-19 17:56:37 -04:00
patch -p1 < " $DOS_PATCHES /android_packages_apps_Settings/201113.patch " ; #wifi: Add world regulatory domain country code
2019-08-30 02:09:45 -04:00
patch -p1 < " $DOS_PATCHES /android_packages_apps_Settings/0001-Captive_Portal_Toggle.patch " ; #Add option to disable captive portal checks (MSe)
sed -i 's/private int mPasswordMaxLength = 16;/private int mPasswordMaxLength = 48;/' src/com/android/settings/ChooseLockPassword.java; #Increase max password length (GrapheneOS)
2019-01-14 03:12:50 -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
2018-06-29 00:55:21 -04:00
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
2017-05-29 14:13:29 -04:00
2018-04-23 08:59:18 -04:00
enterAndClear "packages/apps/SetupWizard" ;
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES /android_packages_apps_SetupWizard/0001-Remove_Analytics.patch " ; #Remove the rest of CMStats
2017-10-18 07:54:56 -04:00
2018-04-23 08:59:18 -04:00
enterAndClear "packages/apps/Updater" ;
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES_COMMON /android_packages_apps_Updater/0001-Server.patch " ; #Switch to our server
2018-09-24 06:46:54 -04:00
patch -p1 < " $DOS_PATCHES /android_packages_apps_Updater/0002-Tor_Support.patch " ; #Add Tor support
2018-04-12 06:40:10 -04:00
#TODO: Remove changelog
2017-11-05 16:49:52 -05:00
2018-04-23 08:59:18 -04:00
enterAndClear "packages/apps/WallpaperPicker" ;
2017-11-04 09:47:54 -04:00
rm res/drawable-nodpi/{ *.png,*.jpg} res/values-nodpi/wallpapers.xml; #Remove old ones
2018-06-29 00:55:21 -04:00
cp -r " $DOS_WALLPAPERS " 'Compressed/.' res/drawable-nodpi/; #Add ours
cp -r " $DOS_WALLPAPERS " "Thumbs/." res/drawable-nodpi/;
cp " $DOS_WALLPAPERS " "wallpapers.xml" res/values-nodpi/wallpapers.xml;
2017-11-04 16:56:52 -04:00
sed -i 's/req.touchEnabled = touchEnabled;/req.touchEnabled = true;/' src/com/android/wallpaperpicker/WallpaperCropActivity.java; #Allow scrolling
sed -i 's/mCropView.setTouchEnabled(req.touchEnabled);/mCropView.setTouchEnabled(true);/' src/com/android/wallpaperpicker/WallpaperCropActivity.java;
2018-01-20 07:36:08 -05:00
sed -i 's/WallpaperUtils.EXTRA_WALLPAPER_OFFSET, 0);/WallpaperUtils.EXTRA_WALLPAPER_OFFSET, 0.5f);/' src/com/android/wallpaperpicker/WallpaperPickerActivity.java; #Center aligned by default
2017-11-04 09:47:54 -04:00
2018-04-23 08:59:18 -04:00
enterAndClear "packages/inputmethods/LatinIME" ;
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES_COMMON /android_packages_inputmethods_LatinIME/0001-Voice.patch " ; #Remove voice input key
2017-05-29 20:27:06 -04:00
2018-12-27 12:11:25 -05:00
enterAndClear "packages/services/Telephony" ;
2018-12-28 21:25:13 -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 " ;
2018-12-27 12:11:25 -05:00
2019-10-19 17:56:37 -04:00
enterAndClear "system/bt" ;
patch -p1 < " $DOS_PATCHES /android_system_bt/229574.patch " ; #Increase maximum Bluetooth SBC codec bitrate for SBC HD
patch -p1 < " $DOS_PATCHES /android_system_bt/229575.patch " ; #Explicit SBC Dual Channel (SBC HD) support
patch -p1 < " $DOS_PATCHES /android_system_bt/242134.patch " ; #avrc_bld_get_attrs_rsp - fix attribute length position off by one
2018-04-23 08:59:18 -04:00
enterAndClear "system/core" ;
2019-09-28 01:01:47 -04:00
sed -i 's/!= 2048/< 2048/' libmincrypt/tools/DumpPublicKey.java; #Allow 4096-bit keys
2018-07-04 15:35:16 -04:00
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 0217dddeb5c16903c13ff6c75213619b79ea622b d7aa1231b6a0631f506c0c23816f2cd81645b15f; #Always update recovery XXX: This doesn't seem to work
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)
2017-05-29 20:05:52 -04:00
2020-07-13 20:15:08 -04:00
enterAndClear "system/netd" ;
2020-07-13 21:28:17 -04:00
git am $DOS_PATCHES /android_system_netd/*.patch; #n-netd
2020-07-13 20:15:08 -04:00
2018-06-28 20:11:20 -04:00
enterAndClear "system/sepolicy" ;
2019-10-19 17:56:37 -04:00
patch -p1 < " $DOS_PATCHES /android_system_sepolicy/248600.patch " ; #restrict access to timing information in /proc
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES /android_system_sepolicy/0001-LGE_Fixes.patch " ; #Fix -user builds for LGE devices
2018-06-28 20:11:20 -04:00
2018-04-23 08:59:18 -04:00
enterAndClear "system/vold" ;
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES /android_system_vold/0001-AES256.patch " ; #Add a variable for enabling AES-256 bit encryption
2017-11-09 17:16:55 -05:00
2018-04-23 08:59:18 -04:00
enterAndClear "vendor/cm" ;
2019-09-13 20:26:43 -04:00
rm build/target/product/security/lineage.x509.pem;
2018-04-23 08:59:18 -04:00
rm -rf overlay/common/vendor/cmsdk/packages; #Remove analytics
2019-09-05 03:46:33 -04:00
rm -rf overlay/common/frameworks/base/core/res/res/drawable-*/default_wallpaper.png;
2017-05-31 16:18:43 -04:00
awk -i inplace '!/50-cm.sh/' config/common.mk; #Make sure our hosts is always used
2018-04-12 06:40:10 -04:00
awk -i inplace '!/PRODUCT_EXTRA_RECOVERY_KEYS/' config/common.mk; #Remove extra keys
awk -i inplace '!/security\/lineage/' config/common.mk; #Remove extra keys
2018-06-29 00:55:21 -04:00
if [ " $DOS_DEBLOBBER_REMOVE_AUDIOFX " = true ] ; then
2018-06-23 00:51:10 -04:00
awk -i inplace '!/AudioFX/' config/common.mk;
awk -i inplace '!/AudioService/' config/common.mk;
fi ;
2019-09-04 02:56:27 -04:00
awk -i inplace '!/def_backup_transport/' overlay/common/frameworks/base/packages/SettingsProvider/res/values/defaults.xml;
2018-07-13 01:32:11 -04: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 ;
2018-03-22 09:49:44 -04:00
sed -i 's/CM_BUILDTYPE := UNOFFICIAL/CM_BUILDTYPE := dos/' config/common.mk; #Change buildtype
2018-06-29 00:55:21 -04:00
if [ " $DOS_NON_COMMERCIAL_USE_PATCHES " = true ] ; then sed -i 's/CM_BUILDTYPE := dos/CM_BUILDTYPE := dosNC/' config/common.mk; fi ;
2018-07-12 22:43:28 -04:00
echo 'include vendor/divested/divestos.mk' >> config/common.mk; #Include our customizations
2017-05-29 20:08:55 -04:00
2018-04-23 08:59:18 -04:00
enterAndClear "vendor/cmsdk" ;
2017-10-19 19:40:54 -04:00
awk -i inplace '!/WeatherManagerServiceBroker/' cm/res/res/values/config.xml; #Disable Weather
2018-06-29 00:55:21 -04:00
if [ " $DOS_DEBLOBBER_REMOVE_AUDIOFX " = true ] ; then awk -i inplace '!/CMAudioService/' cm/res/res/values/config.xml; fi ;
2017-07-04 02:57:50 -04:00
sed -i 's/shouldUseOptimizations(weight)/true/' cm/lib/main/java/org/cyanogenmod/platform/internal/PerformanceManagerService.java; #Per app performance profiles fix
2018-07-12 22:05:02 -04:00
2018-07-12 22:43:28 -04:00
enter "vendor/divested" ;
2018-10-19 18:28:18 -04:00
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 ;
2016-12-27 11:40:16 -05:00
#
#END OF ROM CHANGES
#
#
#START OF DEVICE CHANGES
#
2018-06-08 14:15:50 -04:00
enterAndClear "device/amazon/hdx-common" ;
sed -i 's/,encryptable=footer//' rootdir/etc/fstab.qcom; #Using footer will break the bootloader, it might work with /misc enabled
2018-03-15 23:46:55 -04:00
#XXX: If not used with a supported recovery, it'll be thrown into a bootloop, don't worry just 'fastboot erase misc' and reboot
#echo "/dev/block/platform/msm_sdcc.1/by-name/misc /misc emmc defaults defaults" >> rootdir/etc/fstab.qcom; #Add the misc (mmcblk0p5) partition for recovery flags
2018-01-31 07:43:47 -05:00
2018-07-11 11:22:22 -04:00
enableLowRam "device/asus/grouper" ;
2018-06-26 05:57:22 -04:00
enterAndClear "device/asus/grouper" ;
2018-06-29 00:55:21 -04:00
patch -p1 < " $DOS_PATCHES /android_device_asus_grouper/0001-Update_Blobs.patch " ;
2018-07-10 17:59:03 -04:00
patch -p1 < " $DOS_PATCHES /android_device_asus_grouper/0002-Perf_Tweaks.patch " ;
2018-06-26 05:57:22 -04:00
rm proprietary-blobs.txt;
2018-06-29 00:55:21 -04:00
cp " $DOS_PATCHES /android_device_asus_grouper/lineage-proprietary-files.txt " lineage-proprietary-files.txt;
2019-03-26 19:37:56 -04:00
echo "allow gpsd system_data_file:dir write;" >> sepolicy/gpsd.te;
2018-06-26 05:57:22 -04:00
2018-06-28 20:11:20 -04:00
enterAndClear "device/lge/g2-common" ;
sed -i '3itypeattribute hwaddrs misc_block_device_exception;' sepolicy/hwaddrs.te;
enterAndClear "device/lge/g3-common" ;
sed -i '3itypeattribute hwaddrs misc_block_device_exception;' sepolicy/hwaddrs.te;
sed -i '1itypeattribute wcnss_service misc_block_device_exception;' sepolicy/wcnss_service.te;
echo "allow wcnss_service block_device:dir search;" >> sepolicy/wcnss_service.te; #fix incorrect Wi-Fi MAC address
2018-06-30 14:03:11 -04:00
enterAndClear "device/lge/msm8996-common" ;
sed -i '3itypeattribute hwaddrs misc_block_device_exception;' sepolicy/hwaddrs.te;
2018-06-28 20:11:20 -04:00
enterAndClear "device/lge/mako" ;
echo "allow kickstart usbfs:dir search;" >> sepolicy/kickstart.te; #Fix forceencrypt on first boot
2020-04-19 13:19:22 -04:00
echo "pmf=0" >> wpa_supplicant_overlay.conf; #Wi-Fi chipset doesn't support PMF
2018-06-28 20:11:20 -04:00
2018-04-23 08:59:18 -04:00
enterAndClear "device/motorola/clark" ;
2018-04-10 00:08:21 -04:00
sed -i 's/0xA04D/0xA04D|0xA052/' board-info.txt; #Allow installing on Nougat bootloader, assume the user is running the correct modem
rm board-info.txt; #Never restrict installation
2018-06-27 09:17:50 -04:00
enterAndClear "device/oneplus/bacon" ;
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/
2019-09-18 15:59:27 -04:00
enterAndClear "device/samsung/exynos5420-common" ;
awk -i inplace '!/shell su/' sepolicy/shell.te; #neverallow
2019-09-13 20:26:43 -04:00
#enterAndClear "device/samsung/manta";
2020-01-08 21:22:35 -05:00
#git revert --no-edit e55bbff1c8aa50e25ffe39c8936ea3dc92a4a575; #restore releasetools #TODO
2019-09-07 09:56:47 -04:00
2019-02-13 21:48:57 -05:00
enterAndClear "device/samsung/toroplus" ;
2019-02-22 08:38:24 -05:00
awk -i inplace '!/additional_system_update/' overlay/packages/apps/Settings/res/values*/*.xml;
2019-02-13 21:48:57 -05:00
enableLowRam "device/samsung/tuna" ;
2019-02-02 06:11:41 -05:00
enterAndClear "device/samsung/tuna" ;
2020-01-08 21:22:35 -05:00
#git revert --no-edit e53eea6426da49dfb542929d5aa686667f4d416f; #restore releasetools #TODO
2019-02-01 02:52:54 -05:00
rm setup-makefiles.sh; #broken, deblobber will still function
2019-03-25 20:30:27 -04:00
sed -i 's|vendor/maguro/|vendor/|' libgps-shim/gps.c; #fix dlopen not found
2020-03-25 22:08:25 -04:00
#See: https://review.lineageos.org/q/topic:tuna-sepolicies
2019-02-09 14:47:55 -05:00
patch -p1 < " $DOS_PATCHES /android_device_samsung_tuna/0001-fix_denial.patch " ;
patch -p1 < " $DOS_PATCHES /android_device_samsung_tuna/0002-fix_denial.patch " ;
patch -p1 < " $DOS_PATCHES /android_device_samsung_tuna/0003-fix_denial.patch " ;
patch -p1 < " $DOS_PATCHES /android_device_samsung_tuna/0004-fix_denial.patch " ;
2019-02-13 21:48:57 -05:00
patch -p1 < " $DOS_PATCHES /android_device_samsung_tuna/0005-fix_denial.patch " ;
2019-03-25 20:30:27 -04:00
echo "allow system_server system_file:file execmod;" >> sepolicy/system_server.te; #fix gps load
2019-02-09 14:47:55 -05:00
2018-07-22 17:08:22 -04:00
enter "vendor/google" ;
echo "" > atv/atv-common.mk;
2017-10-30 17:38:00 -04:00
#Make changes to all devices
2018-06-29 00:55:21 -04:00
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 "{}"' ;
2018-06-29 00:55:21 -04:00
cd " $DOS_BUILD_BASE " ;
2020-02-19 22:07:57 -05:00
deblobAudio;
2018-01-31 13:14:19 -05:00
2019-09-13 20:26:43 -04:00
#Verity
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" ;
cp " $DOS_SIGNING_KEYS /sailfish/verifiedboot_relkeys.der.x509 " "kernel/google/marlin/verifiedboot_sailfish_dos_relkeys.der.x509" ;
2019-09-13 20:26:43 -04:00
2018-03-14 00:41:05 -04:00
#Fixes
2018-01-31 13:14:19 -05:00
#Fix broken options enabled by hardenDefconfig()
2019-11-24 15:23:35 -05:00
sed -i "s/# CONFIG_KPROBES is not set/CONFIG_KPROBES=y/" kernel/amazon/hdx-common/arch/arm/configs/*hdx*_defconfig; #Breaks on compile
2018-06-27 09:17:50 -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
2018-01-31 13:14:19 -05:00
sed -i "s/CONFIG_STRICT_MEMORY_RWX=y/# CONFIG_STRICT_MEMORY_RWX is not set/" kernel/lge/msm8996/arch/arm64/configs/lineageos_*_defconfig; #Breaks on compile
2018-06-30 14:03:11 -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
2018-09-06 07:48:10 -04:00
sed -i "s/CONFIG_ARM_SMMU=y/# CONFIG_ARM_SMMU is not set/" kernel/motorola/msm8992/arch/arm64/configs/*defconfig; #Breaks on compile
2019-02-13 21:48:57 -05:00
#tuna fixes
awk -i inplace '!/nfc_enhanced.mk/' device/samsung/toro*/lineage.mk;
awk -i inplace '!/TARGET_RECOVERY_UPDATER_LIBS/' device/samsung/toro*/BoardConfig.mk;
awk -i inplace '!/TARGET_RELEASETOOLS_EXTENSIONS/' device/samsung/toro*/BoardConfig.mk;
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
2016-12-27 11:40:16 -05:00
#
#END OF DEVICE CHANGES
#