DNS changes
This commit is contained in:
parent
ba66e7477c
commit
d740b10822
@ -1,5 +0,0 @@
|
|||||||
frameworks/base
|
|
||||||
core/res/res/values/config.xml
|
|
||||||
packages/SettingsLib/res/values/strings.xml
|
|
||||||
services/core/java/com/android/server/connectivity/NetworkDiagnostics.java
|
|
||||||
services/core/java/com/android/server/connectivity/Tethering.java
|
|
13
Misc/be3
13
Misc/be3
@ -1,13 +0,0 @@
|
|||||||
../../../../../../kernel/google/msm/arch/arm/mm/rodata.c: In function 'set_page_attributes':
|
|
||||||
../../../../../../kernel/google/msm/arch/arm/mm/rodata.c:91:4: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'pmd_t' [-Wformat=]
|
|
||||||
error, forbidden warning: rodata.c:91
|
|
||||||
CC arch/arm/kernel/smp.o
|
|
||||||
make[2]: *** [/mnt/Drive-1/Development/Other/Android_ROMs/Build/LineageOS-14.1/kernel/google/msm/scripts/Makefile.build:307: arch/arm/mm/rodata.o] Error 1
|
|
||||||
|
|
||||||
marlin
|
|
||||||
../../../../../../kernel/google/marlin/mm/mmap.c:95:29: error: expected '=', ',', ';', 'asm' or '__attribute__' before '__ro_after_init'
|
|
||||||
pgprot_t protection_map[16] __ro_after_init = {
|
|
||||||
^
|
|
||||||
make[2]: *** [/mnt/Drive-1/Development/Other/Android_ROMs/Build/LineageOS-14.1/kernel/google/marlin/scripts/Makefile.build:257: mm/mmap.o] Error 1
|
|
||||||
make[1]: *** [/mnt/Drive-1/Development/Other/Android_ROMs/Build/LineageOS-14.1/kernel/google/marlin/Makefile:951: mm] Error 2
|
|
||||||
|
|
5
Misc/flo
Normal file
5
Misc/flo
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
../../../../../../kernel/google/msm/arch/arm/mm/rodata.c: In function 'set_page_attributes':
|
||||||
|
../../../../../../kernel/google/msm/arch/arm/mm/rodata.c:91:4: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'pmd_t' [-Wformat=]
|
||||||
|
error, forbidden warning: rodata.c:91
|
||||||
|
CC arch/arm/kernel/smp.o
|
||||||
|
make[2]: *** [/mnt/Drive-1/Development/Other/Android_ROMs/Build/LineageOS-14.1/kernel/google/msm/scripts/Makefile.build:307: arch/arm/mm/rodata.o] Error 1
|
@ -0,0 +1,59 @@
|
|||||||
|
From 3bf0b445f16aa7daa4981e70a7d5dc6c6ea530ea Mon Sep 17 00:00:00 2001
|
||||||
|
From: Tad <tad@spotco.us>
|
||||||
|
Date: Tue, 19 Dec 2017 17:00:40 -0500
|
||||||
|
Subject: [PATCH] Change fallback and tethering DNS servers to OpenNIC AnyCast
|
||||||
|
|
||||||
|
Change-Id: Ib550fad74bb95272c067a02a5da18a80e6ec1e87
|
||||||
|
---
|
||||||
|
core/res/res/values/config.xml | 2 +-
|
||||||
|
packages/SettingsLib/res/values/strings.xml | 4 ++--
|
||||||
|
services/core/java/com/android/server/connectivity/Tethering.java | 4 ++--
|
||||||
|
3 files changed, 5 insertions(+), 5 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml
|
||||||
|
index c29ff3c90a9..f7cbb5780ff 100755
|
||||||
|
--- a/core/res/res/values/config.xml
|
||||||
|
+++ b/core/res/res/values/config.xml
|
||||||
|
@@ -1608,7 +1608,7 @@
|
||||||
|
<bool name="config_bluetooth_default_profiles">true</bool>
|
||||||
|
|
||||||
|
<!-- IP address of the dns server to use if nobody else suggests one -->
|
||||||
|
- <string name="config_default_dns_server" translatable="false">8.8.8.8</string>
|
||||||
|
+ <string name="config_default_dns_server" translatable="false">185.121.177.177</string>
|
||||||
|
|
||||||
|
<!-- The default mobile provisioning apn. Empty by default, maybe overridden by
|
||||||
|
an mcc/mnc specific config.xml -->
|
||||||
|
diff --git a/packages/SettingsLib/res/values/strings.xml b/packages/SettingsLib/res/values/strings.xml
|
||||||
|
index f9bd24ba69f..12b6f7cb700 100644
|
||||||
|
--- a/packages/SettingsLib/res/values/strings.xml
|
||||||
|
+++ b/packages/SettingsLib/res/values/strings.xml
|
||||||
|
@@ -837,9 +837,9 @@
|
||||||
|
<!-- Hint text for the IP address -->
|
||||||
|
<string name="wifi_ip_address_hint" translatable="false">192.168.1.128</string>
|
||||||
|
<!-- Hint text for DNS -->
|
||||||
|
- <string name="wifi_dns1_hint" translatable="false">8.8.8.8</string>
|
||||||
|
+ <string name="wifi_dns1_hint" translatable="false">185.121.177.177</string>
|
||||||
|
<!-- Hint text for DNS -->
|
||||||
|
- <string name="wifi_dns2_hint" translatable="false">8.8.4.4</string>
|
||||||
|
+ <string name="wifi_dns2_hint" translatable="false">169.239.202.202</string>
|
||||||
|
<!-- Hint text for the gateway -->
|
||||||
|
<string name="wifi_gateway_hint" translatable="false">192.168.1.1</string>
|
||||||
|
<!-- Hint text for network prefix length -->
|
||||||
|
diff --git a/services/core/java/com/android/server/connectivity/Tethering.java b/services/core/java/com/android/server/connectivity/Tethering.java
|
||||||
|
index f0cf0d98882..07157873169 100644
|
||||||
|
--- a/services/core/java/com/android/server/connectivity/Tethering.java
|
||||||
|
+++ b/services/core/java/com/android/server/connectivity/Tethering.java
|
||||||
|
@@ -181,8 +181,8 @@ public class Tethering extends BaseNetworkObserver implements IControlsTethering
|
||||||
|
};
|
||||||
|
|
||||||
|
private String[] mDefaultDnsServers;
|
||||||
|
- private static final String DNS_DEFAULT_SERVER1 = "8.8.8.8";
|
||||||
|
- private static final String DNS_DEFAULT_SERVER2 = "8.8.4.4";
|
||||||
|
+ private static final String DNS_DEFAULT_SERVER1 = "185.121.177.177";
|
||||||
|
+ private static final String DNS_DEFAULT_SERVER2 = "169.239.202.202";
|
||||||
|
|
||||||
|
private final StateMachine mTetherMasterSM;
|
||||||
|
private final UpstreamNetworkMonitor mUpstreamNetworkMonitor;
|
||||||
|
--
|
||||||
|
2.15.1
|
||||||
|
|
@ -79,6 +79,7 @@ patch -p1 < $patches"android_frameworks_base/0001-Reduced_Resolution.patch" #All
|
|||||||
#patch -p1 < $patches"android_frameworks_base/0002-Radio.patch" #Add a QS tile to control radio power #TODO: Breaks cell and SystemUI
|
#patch -p1 < $patches"android_frameworks_base/0002-Radio.patch" #Add a QS tile to control radio power #TODO: Breaks cell and SystemUI
|
||||||
patch -p1 < $patches"android_frameworks_base/0003-Signature_Spoofing.patch" #Allow packages to spoof their signature (MicroG)
|
patch -p1 < $patches"android_frameworks_base/0003-Signature_Spoofing.patch" #Allow packages to spoof their signature (MicroG)
|
||||||
patch -p1 < $patches"android_frameworks_base/0005-Harden_Sig_Spoofing.patch" #Restrict signature spoofing to system apps signed with the platform key
|
patch -p1 < $patches"android_frameworks_base/0005-Harden_Sig_Spoofing.patch" #Restrict signature spoofing to system apps signed with the platform key
|
||||||
|
patch -p1 < $patches"android_frameworks_base/0006-OpenNIC.patch" #Change fallback and tethering DNS servers to OpenNIC AnyCast
|
||||||
rm -rf packages/PrintRecommendationService; #App that just creates popups to install proprietary print apps
|
rm -rf packages/PrintRecommendationService; #App that just creates popups to install proprietary print apps
|
||||||
rm core/res/res/values/config.xml.orig core/res/res/values/strings.xml.orig
|
rm core/res/res/values/config.xml.orig core/res/res/values/strings.xml.orig
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user