17.1: Fixup TTS

This commit is contained in:
Tad 2020-09-25 11:38:26 -04:00
parent 92f7f37096
commit 46c1a74ef3
3 changed files with 61 additions and 2 deletions

View File

@ -0,0 +1,59 @@
From 13dca7d2cdaa7e4a3ffc3d5a16c716542fac4e88 Mon Sep 17 00:00:00 2001
From: Tad <tad@spotco.us>
Date: Fri, 25 Sep 2020 10:13:52 -0400
Subject: [PATCH] Restore PicoTTS
Reverts:
271f6ffa045064abcac066e97f2cb53ccb3e5126
61f7ee9386be426fd4eadc2c8759362edb5bef8d
Change-Id: I9aee2c5f739f9f08a27c71d54570517ed4aa413f
---
target/product/full_base.mk | 3 +++
target/product/handheld_system.mk | 9 +++++++++
2 files changed, 12 insertions(+)
diff --git a/target/product/full_base.mk b/target/product/full_base.mk
index f3fb8c306..e9f7079c0 100644
--- a/target/product/full_base.mk
+++ b/target/product/full_base.mk
@@ -58,6 +58,9 @@ else
$(call inherit-product-if-exists, frameworks/base/data/sounds/AudioPackage14.mk)
endif
+# Get the TTS language packs
+$(call inherit-product-if-exists, external/svox/pico/lang/all_pico_languages.mk)
+
# Get a list of languages.
$(call inherit-product, $(SRC_TARGET_DIR)/product/languages_full.mk)
diff --git a/target/product/handheld_system.mk b/target/product/handheld_system.mk
index e5771cc94..6d2bc7c8a 100644
--- a/target/product/handheld_system.mk
+++ b/target/product/handheld_system.mk
@@ -31,6 +31,14 @@ $(call inherit-product-if-exists, external/hyphenation-patterns/patterns.mk)
$(call inherit-product-if-exists, frameworks/base/data/keyboards/keyboards.mk)
$(call inherit-product-if-exists, frameworks/webview/chromium/chromium.mk)
+# include available languages for TTS in the system image
+-include external/svox/pico/lang/PicoLangDeDeInSystem.mk
+-include external/svox/pico/lang/PicoLangEnGBInSystem.mk
+-include external/svox/pico/lang/PicoLangEnUsInSystem.mk
+-include external/svox/pico/lang/PicoLangEsEsInSystem.mk
+-include external/svox/pico/lang/PicoLangFrFrInSystem.mk
+-include external/svox/pico/lang/PicoLangItItInSystem.mk
+
PRODUCT_PACKAGES += \
BasicDreams \
BlockedNumberProvider \
@@ -58,6 +66,7 @@ PRODUCT_PACKAGES += \
MusicFX \
OsuLogin \
PacProcessor \
+ PicoTts \
PrintRecommendationService \
PrintSpooler \
ProxyHandler \
--
2.26.2

@ -1 +1 @@
Subproject commit 227f7aefd4ee1ee71c97f6f2577cc67320632b64
Subproject commit a4fce0e963a497c6acb5e161842442d2e336810c

View File

@ -65,7 +65,7 @@ if [ "$DOS_GRAPHENE_MALLOC" = true ]; then patch -p1 < "$DOS_PATCHES/android_bio
if [ "$DOS_GRAPHENE_MALLOC" = true ]; then patch -p1 < "$DOS_PATCHES/android_bionic/0002-Symbol_Ordering.patch"; fi; #(GrapheneOS)
enterAndClear "build/make";
#git revert --no-edit 271f6ffa045064abcac066e97f2cb53ccb3e5126 61f7ee9386be426fd4eadc2c8759362edb5bef8; #Add back PicoTTS and language files
patch -p1 < "$DOS_PATCHES/android_build/0001-Restore_TTS.patch"; #Add back PicoTTS and language files
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;
sed -i '75i$(my_res_package): PRIVATE_AAPT_FLAGS += --auto-add-overlay' core/aapt2.mk;