2022-08-15 16:37:41 -04:00
|
|
|
#!/bin/sh
|
2024-04-22 07:48:54 -04:00
|
|
|
#DivestOS: A mobile operating system divested from the norm.
|
|
|
|
#Copyright (c) 2022-2024 Divested Computing Group
|
2022-08-15 16:37:41 -04: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/>.
|
|
|
|
umask 0022;
|
|
|
|
set -uo pipefail;
|
|
|
|
|
|
|
|
#APN List
|
2024-03-05 13:05:09 -05:00
|
|
|
wget "https://github.com/LineageOS/android_vendor_lineage/raw/lineage-21.0/prebuilt/common/etc/apns-conf.xml" -O ../Patches/Common/apns-conf.xml;
|
2022-08-15 16:37:41 -04:00
|
|
|
|
|
|
|
#Visual VoiceMail Config
|
2024-03-05 13:05:09 -05:00
|
|
|
#wget "https://raw.githubusercontent.com/LineageOS/android_vendor_lineage/lineage-21.0/overlay/common/packages/apps/Dialer/java/com/android/voicemail/impl/res/xml/vvm_config.xml" -O ../Patches/./Common/android_vendor_divested/overlay/common/packages/apps/Dialer/java/com/android/voicemail/impl/res/xml/vvm_config.xml;
|
|
|
|
wget "https://raw.githubusercontent.com/GrapheneOS/platform_packages_apps_Dialer/14/java/com/android/voicemail/impl/res/xml/vvm_config.xml" -O ../Patches/./Common/android_vendor_divested/overlay/common/packages/apps/Dialer/java/com/android/voicemail/impl/res/xml/vvm_config.xml;
|
2022-08-15 16:37:41 -04:00
|
|
|
|
|
|
|
#LineageOS Contributors Cloud
|
2024-03-05 13:05:09 -05:00
|
|
|
wget "https://github.com/LineageOS/android_packages_apps_LineageParts/raw/lineage-21.0/assets/contributors.db" -O ../Patches/Common/contributors.db;
|
2022-08-15 16:37:41 -04:00
|
|
|
|
2023-12-05 20:18:09 -05:00
|
|
|
#TODO: wireless-regdb, unused
|
2022-08-15 16:37:41 -04:00
|
|
|
#https://mirrors.edge.kernel.org/pub/software/network/wireless-regdb/
|
2024-03-05 13:05:09 -05:00
|
|
|
#Last: 2024/03/05
|
2022-10-12 21:28:48 -04:00
|
|
|
|
2022-10-12 21:40:22 -04:00
|
|
|
#TODO: MMS Configs
|
|
|
|
#https://github.com/GrapheneOS/platform_packages_apps_Messaging
|
2024-03-05 13:05:09 -05:00
|
|
|
#Last: 2024/03/05
|
2023-06-17 14:50:49 -04:00
|
|
|
|
|
|
|
#TODO: CA store
|
|
|
|
#https://android.googlesource.com/platform/system/ca-certificates
|
2024-03-05 13:05:09 -05:00
|
|
|
#Last: 2024/03/05
|
2022-10-12 21:40:22 -04:00
|
|
|
|
2023-03-06 20:30:01 -05:00
|
|
|
#TODO: Carrier List, unused
|
2022-10-12 21:40:22 -04:00
|
|
|
#https://android.googlesource.com/platform/packages/providers/TelephonyProvider/
|
2024-03-05 13:05:09 -05:00
|
|
|
#Last: 2024/03/05
|
2022-10-12 21:40:22 -04:00
|
|
|
|
2023-03-06 20:30:01 -05:00
|
|
|
#TODO: Carrier Configs, unused
|
2022-10-12 21:40:22 -04:00
|
|
|
#https://android.googlesource.com/platform/packages/apps/CarrierConfig/
|
2024-03-05 13:05:09 -05:00
|
|
|
#Last: 2024/03/05
|