Initial unified commit for Android 14, with TrebleDroid GSI target, syncing up to 20240208

This commit is contained in:
Andy CrossGate Yan
2024-02-17 16:46:38 +08:00
commit e9902a4450
281 changed files with 169698 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
From 54d0800923cfdaf7bdcbf9b8379823f600a4f23a Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <phh@phh.me>
Date: Wed, 27 Oct 2021 14:40:26 -0400
Subject: [PATCH] Disable vndklite handling
Change-Id: I4a132512471a68891f2efb59539267c35a3c3e56
---
modules/environment.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/environment.cc b/modules/environment.cc
index 82801f3..e05341b 100644
--- a/modules/environment.cc
+++ b/modules/environment.cc
@@ -29,7 +29,7 @@ bool IsLegacyDevice() {
}
bool IsVndkLiteDevice() {
- return Variables::GetValue("ro.vndk.lite").value_or("") == "true";
+ return false;
}
bool IsVndkInSystemNamespace() {
--
2.25.1