Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Commit

Permalink
feat: Sync with latest sources of TrebleDroid (ci-20230818)
Browse files Browse the repository at this point in the history
  • Loading branch information
ponces committed Aug 21, 2023
1 parent 5b6bc9d commit 0ae346d
Show file tree
Hide file tree
Showing 145 changed files with 292 additions and 176 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
From 7cf56d80f82f3058a8a63da5e3f25fd2ac5bd988 Mon Sep 17 00:00:00 2001
From: Alberto Ponces <[email protected]>
Date: Mon, 21 Aug 2023 12:59:47 +0000
Subject: [PATCH] Revert "gd: hci: Allow disabling selected local commands"

This reverts commit d7c59612960e6ed25c7458b0d6f690861765ac0d.
---
system/gd/hci/controller.cc | 14 --------------
1 file changed, 14 deletions(-)

diff --git a/system/gd/hci/controller.cc b/system/gd/hci/controller.cc
index 58ee4726cf..6af46d02ad 100644
--- a/system/gd/hci/controller.cc
+++ b/system/gd/hci/controller.cc
@@ -16,7 +16,6 @@

#include "hci/controller.h"

-#include <android-base/strings.h>
#include <future>
#include <memory>
#include <string>
@@ -26,14 +25,10 @@
#include "hci/hci_layer.h"
#include "hci_controller_generated.h"
#include "os/metrics.h"
-#include "os/system_properties.h"

namespace bluetooth {
namespace hci {

-static const char kPropertyDisabledCommands[] =
- "bluetooth.hci.disabled_commands";
-
using os::Handler;

struct Controller::impl {
@@ -265,15 +260,6 @@ struct Controller::impl {
ErrorCode status = complete_view.GetStatus();
ASSERT_LOG(status == ErrorCode::SUCCESS, "Status 0x%02hhx, %s", status, ErrorCodeText(status).c_str());
local_supported_commands_ = complete_view.GetSupportedCommands();
-
- if (auto disabledCommands = os::GetSystemProperty(kPropertyDisabledCommands)) {
- for (const auto& command : android::base::Split(*disabledCommands, ",")) {
- uint16_t index = std::stoi(command);
- uint16_t byte_index = index / 10;
- uint16_t bit_index = index % 10;
- local_supported_commands_[byte_index] &= ~(1 << bit_index);
- }
- }
}

void read_local_extended_features_complete_handler(std::promise<void> promise, CommandCompleteView view) {
--
2.34.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From c6bbf8deb37ca681e86692efa872d5d75dfefc94 Mon Sep 17 00:00:00 2001
From 9feb90012e1718c8b7ae736134d4465192e52223 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Wed, 27 Oct 2021 14:39:29 -0400
Subject: [PATCH 1/4] Disable vndklite handling
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 80500a4e7d350a44f281174c4e02aa3eda80cfe3 Mon Sep 17 00:00:00 2001
From 43efb3e3d15e3831d5d08d144df79c1615e36c1f Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Sat, 19 Feb 2022 08:20:25 -0500
Subject: [PATCH 2/4] Add new mechanism to fake vendor props on a per-process
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From a46e75e4e82ab5de2bc4dd2b83a6f9bf8140f17b Mon Sep 17 00:00:00 2001
From 285168dd61e6020c720d9ff6ea9a9fe82c6db2c7 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Thu, 19 Jan 2023 16:44:01 -0500
Subject: [PATCH 3/4] Rework property overriding
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 73fa657ca056ef1ab283e081baf2cc06240d3054 Mon Sep 17 00:00:00 2001
From faebb06332fd42fd15316e21a891348ebc7e9406 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Sun, 28 May 2023 16:46:46 -0400
Subject: [PATCH 4/4] Add some properties to fake in "keymaster" prop
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 674432d3c5e1a30eb77a0db24672fca9615f4edf Mon Sep 17 00:00:00 2001
From 3ca17e76a836a951415d087d160c5b805a7e2d22 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Thu, 12 Sep 2019 20:31:07 +0200
Subject: [PATCH] Don't reboot if we couldn't get bootctrl
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 7028e8c7a5e9ae8940b2fea3c0587c82de7d3539 Mon Sep 17 00:00:00 2001
From 069fc1320095c7a37fc8f24b372e7f9213ee6aa9 Mon Sep 17 00:00:00 2001
From: sooti <[email protected]>
Date: Tue, 12 Oct 2021 14:32:52 +0300
Subject: [PATCH 1/4] build: remove emulator crap from GSI
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 2c9e1563fca3a3f80b6964e977e4d9ab25ed9605 Mon Sep 17 00:00:00 2001
From 8acba28c3cb28e469268ed57df773fc37a1b0e36 Mon Sep 17 00:00:00 2001
From: Alberto Ponces <[email protected]>
Date: Mon, 18 Oct 2021 17:20:18 +0100
Subject: [PATCH 2/4] build: Bypass vendor calls
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From c7e3663a3c1fce40f1710c2a9ae7adad4cf66e1b Mon Sep 17 00:00:00 2001
From d0da7fbdcc0cc4a65cd6f7c3ada20d36b0aed418 Mon Sep 17 00:00:00 2001
From: Andy CrossGate Yan <[email protected]>
Date: Wed, 8 Dec 2021 07:04:53 +0000
Subject: [PATCH 3/4] Remove init.vndk-nodef.rc
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 936bd28106cb89fb74db1b76c48b47b2e902668d Mon Sep 17 00:00:00 2001
From 5529146869934316d087ebf5a0d118512bcbc818 Mon Sep 17 00:00:00 2001
From: Andy CrossGate Yan <[email protected]>
Date: Thu, 14 Oct 2021 12:20:52 +0000
Subject: [PATCH 4/4] build: Remove llkd
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
From e6137af9827acb0134cdf51d70b18c4e9ef67998 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Mon, 9 Apr 2018 00:19:49 +0200
Subject: [PATCH 1/9] Increase default log_level to get actual selinux error in
kmsg
Subject: [PATCH 01/10] Increase default log_level to get actual selinux error
in kmsg

---
secilc/secilc.c | 2 +-
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
From d75d33515d4e39d6165f6b88b0558358736fb587 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Wed, 9 Sep 2020 22:36:42 +0200
Subject: [PATCH 2/9] Revert "libsepol: Make an unknown permission an error in
CIL"
Subject: [PATCH 02/10] Revert "libsepol: Make an unknown permission an error
in CIL"

This reverts commit dc4e54126bf25dea4d51820922ccd1959be68fbc.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
From d6f7237db8247206db3861022b3ab7f1f0b5b96b Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Wed, 31 Mar 2021 23:32:37 +0200
Subject: [PATCH 3/9] Workaround device/phh/treble conflict with SELinux policy
Subject: [PATCH 03/10] Workaround device/phh/treble conflict with SELinux
policy

device/phh/treble defines the following three types (hostapd,
sysfs_usb_supply, rpmb_device)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
From 7cbbd5b16ba622aef077df4d7caf24ece6451a71 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Fri, 6 Sep 2019 15:07:25 +0200
Subject: [PATCH 4/9] Allow /devices/virtual/block/ genfscon conflict (seen on
Xiaomi Mi 9)
Subject: [PATCH 04/10] Allow /devices/virtual/block/ genfscon conflict (seen
on Xiaomi Mi 9)

Change-Id: I06e4e9d5b82d61a8aeab595b47e2589249675895
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From 53f1d10bbab3d7d5a70456be39851538118ee122 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Thu, 12 Sep 2019 20:37:04 +0200
Subject: [PATCH 5/9] if service is "rcs", accept conflict. Seen on Moto E5
Subject: [PATCH 05/10] if service is "rcs", accept conflict. Seen on Moto E5

Change-Id: I0cc2d0fad83f403f2b5d7458039b1564ce5ed9dd
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From 207b6ab1b4fe3bdafc66b65edd4e486a80541ee8 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Sun, 24 May 2020 17:22:22 +0200
Subject: [PATCH 6/9] Allow mismatches of exfat genfscon
Subject: [PATCH 06/10] Allow mismatches of exfat genfscon

---
libsepol/cil/src/cil_post.c | 4 ++++
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From d79ea4efefc24741fcc9e664f4e7e5f3607b414d Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Fri, 2 Mar 2018 22:49:55 +0100
Subject: [PATCH 7/9] Enable multipl_decls by default. This is needed because
Subject: [PATCH 07/10] Enable multipl_decls by default. This is needed because
8.0 init doesn't add -m

Change-Id: I43dc661d519f7b8576d72a828d8cbd444592bf5e
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From fbfaccf212f18ce1e2c0c6e10a3fb6900fd5e17b Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Fri, 25 Oct 2019 13:29:20 +0200
Subject: [PATCH 8/9] Fix boot on Moto devices using unknown class
Subject: [PATCH 08/10] Fix boot on Moto devices using unknown class

vendor sepolicy never contains new class or classorder, and are not
allowed to.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From 1a18553654f2b6e307f99b256cc272ee63b7b651 Mon Sep 17 00:00:00 2001
From: ponces <[email protected]>
Date: Mon, 7 Nov 2022 16:14:20 +0000
Subject: [PATCH 9/9] Improve SELinux policy workaround on device/phh/treble
Subject: [PATCH 09/10] Improve SELinux policy workaround on device/phh/treble
conflict to exit with SEPOL_OK instead of SEPOL_EEXIST

This fixes boot on many Samsung devices as exiting with SEPOL_EEXIST will prevent them to boot
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
From 24b3713d636c6869b35a511a00495642c9b23ccd Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Thu, 20 Jul 2023 14:21:21 -0400
Subject: [PATCH 10/10] Allow /sys/vm/watermark_scale_factor conflict -- seen
on Freebox Player Pop

---
libsepol/cil/src/cil_post.c | 9 +++++++++
1 file changed, 9 insertions(+)

diff --git a/libsepol/cil/src/cil_post.c b/libsepol/cil/src/cil_post.c
index 97bf54f8..4cf1f2d3 100644
--- a/libsepol/cil/src/cil_post.c
+++ b/libsepol/cil/src/cil_post.c
@@ -502,6 +502,15 @@ int cil_post_genfscon_context_compare(const void *a, const void *b)
*/
if(strcmp(a_genfscon->path_str, "/devices/virtual/block/") == 0)
bypass = 1;
+ /*
+ * This conflict has been seen on Freebox Player Pop
+ * - AOSP T says (genfscon proc "/sys/vm/watermark_scale_factor" (u object_r proc_watermark_scale_factor ((s0) (s0))))
+ * - stock rom says proc_vm_writable
+ *
+ * Stock ROM uses it only in recovery so it's safe to ignore
+ */
+ if(strcmp(a_genfscon->path_str, "/sys/vm/watermark_scale_factor") == 0)
+ bypass = 1;
if(strcmp(a_genfscon->fs_str, "exfat") == 0 || strcmp(a_genfscon->fs_str, "esdfs") == 0) {
if(strcmp(a_genfscon->path_str, "/") == 0)
bypass = 1;
--
2.25.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 544cb6eb4c2bbc4846e9a2403b2cda0eab2d9b9d Mon Sep 17 00:00:00 2001
From d880ce937f082e4b948698961d41a7cb7aedceaa Mon Sep 17 00:00:00 2001
From: Peter Cai <[email protected]>
Date: Thu, 18 Aug 2022 15:44:46 -0400
Subject: [PATCH 01/28] APM: Restore S, R and Q behavior respectively for
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 4a007657b7d3204744990618898fb998d881b5e1 Mon Sep 17 00:00:00 2001
From d36693f46b84d03101f07647c321ab44867dcaef Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Mon, 5 Aug 2019 18:09:50 +0200
Subject: [PATCH 02/28] Fix BT in-call on CAF devices
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 1557dde519975fbc07de8e928a5f59f8d456b6f8 Mon Sep 17 00:00:00 2001
From 774ab28f7204a5435c420ba3cdc5df224eb213d9 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Tue, 1 Oct 2019 13:35:49 +0200
Subject: [PATCH 03/28] Add (partial, cam id is hardcoded) support for Asus ZF6
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From d0826fd76c47dd53bfebcfeec1fd7db756a4e781 Mon Sep 17 00:00:00 2001
From 87c7df3a8aef5bd56c658b692b71c9f7ddacfc12 Mon Sep 17 00:00:00 2001
From: Peter Cai <[email protected]>
Date: Wed, 24 Aug 2022 15:42:39 -0400
Subject: [PATCH 04/28] APM: Optionally force-load audio policy for system-side
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 162748a55b231687085c822a59c240fe130ee147 Mon Sep 17 00:00:00 2001
From 4f4ac9bdd43707f12c524c3fb2d80c2ed333fe9a Mon Sep 17 00:00:00 2001
From: Peter Cai <[email protected]>
Date: Thu, 25 Aug 2022 13:30:29 -0400
Subject: [PATCH 05/28] APM: Remove A2DP audio ports from the primary HAL
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 9ba9b367e5a0395c950b73d76328428db5e8f0ba Mon Sep 17 00:00:00 2001
From f310ec6095f06709cbb087a1a34642e51e4f1b91 Mon Sep 17 00:00:00 2001
From: Peter Cai <[email protected]>
Date: Thu, 23 Jan 2020 11:13:43 +0800
Subject: [PATCH 06/28] audiopolicy: try again with trimmed audio port name if
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From da0dbc339f2fe14bf7e6489bf818ff321804e9a8 Mon Sep 17 00:00:00 2001
From da5a18b71f25d6c8de39f3299bb6c25ed6b8ecb3 Mon Sep 17 00:00:00 2001
From: Peter Cai <[email protected]>
Date: Wed, 1 Jun 2022 16:56:46 -0400
Subject: [PATCH 07/28] camera: Implement property to override default camera
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 06ec29d25461d1d63f69a78c2c5121f77b5476b6 Mon Sep 17 00:00:00 2001
From a75f8ef23865c64ea6cb340623b6b2425d8dfa54 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Mon, 13 Apr 2020 21:01:16 +0200
Subject: [PATCH 08/28] There are three SCO devices. Fallback from one to the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From dd59bd459b03adcd0eb5e646c65c2d6ef1af1288 Mon Sep 17 00:00:00 2001
From 0f0f9092e7db6d60e076ff8d02d5f3ccc3a16f9c Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Thu, 14 May 2020 19:54:55 +0200
Subject: [PATCH 09/28] Add persist.sys.phh.samsung.camera_ids property to
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From a5e038e46848617a996ba89a071a6c97d7c65e32 Mon Sep 17 00:00:00 2001
From aa3472198d0129de4e727b23e82a1f718d34dd91 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Tue, 19 May 2020 14:01:14 +0200
Subject: [PATCH 11/28] Add a property to force camera timestamp source
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 2bf580fb843707b5e54882d8530cb131c59dcbf1 Mon Sep 17 00:00:00 2001
From 1e60052213497b6900aaad2c964874275d2dbc74 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Tue, 24 Apr 2018 00:14:28 +0200
Subject: [PATCH 12/28] FIH devices: Fix "Earpiece" audio output
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From bbe0402569eb3106a5fb163fc1613a5ee7f18f9d Mon Sep 17 00:00:00 2001
From 75fe77e64dabd520ccf814eca4ad0d4ad5bff5bf Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Sat, 12 Sep 2020 12:32:50 +0200
Subject: [PATCH 13/28] No longer make re-assigning legacy audio groups fatal.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From b1afb4ed1d77cadc3f1878ae0fcc12532a5709c4 Mon Sep 17 00:00:00 2001
From a10dd094dfbdc44e7ccdeab5437e6bc9925b922f Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Mon, 21 Dec 2020 20:19:11 +0100
Subject: [PATCH 14/28] Make camera IDs filter-out optional
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 02da5f326dc565fc7bc661c524095d891bad824d Mon Sep 17 00:00:00 2001
From e97d52e101b3e9a5db870cd06cd248ac40ed0524 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Sat, 13 Mar 2021 14:20:03 -0500
Subject: [PATCH 15/28] Support Samsung R multi-cams
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From c495fbd3b034e861d338796a1c72095f6c72dd48 Mon Sep 17 00:00:00 2001
From c187aaef80cf27f231faffa8029e2dfb89e1a1eb Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Tue, 23 Mar 2021 00:16:42 +0100
Subject: [PATCH 16/28] Don't crash on unknown audio devices
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 05e0cdf626cbc8d5d44d3182553cf04f2fb0a5d0 Mon Sep 17 00:00:00 2001
From 117b4744f247ba6b0e6404ddfb6869e2540f7d17 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Sun, 28 Mar 2021 18:54:47 +0200
Subject: [PATCH 17/28] Not all sources in a route are valid. Dont ignore the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From b5709333463d0d44a0aeee258609690c8650b45f Mon Sep 17 00:00:00 2001
From 3e0c434220216a0fb1fa0846554bade8cb99eb4e Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Sun, 28 Mar 2021 14:48:49 +0200
Subject: [PATCH 18/28] Use a fake volume policy when none has been found
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 6dfabc6cea2c3180226200ca2f2d586466ebe673 Mon Sep 17 00:00:00 2001
From bf517313198b46533ea87c534a0d7592eb6573ce Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Sat, 7 Aug 2021 11:11:39 +0200
Subject: [PATCH 19/28] When aux cameras are enabled, ignore "system only"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 68ff29c1b7dd6f0e1ee63979b2e683efd17a2493 Mon Sep 17 00:00:00 2001
From ddbd0ab98d69ddaa73ee765432de3573208ad9dc Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Mon, 11 Oct 2021 16:10:42 -0400
Subject: [PATCH 20/28] Revert "Remove support for audio HAL V2 from the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 6b0bb60e8ea91fd6abd571f59268f22c2e7c1e8d Mon Sep 17 00:00:00 2001
From e67d36dfa5bfad87870ad8c5fb3cba154ab05048 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Sun, 30 Jan 2022 07:40:19 -0500
Subject: [PATCH 21/28] Fix parsing audio hal 7.0 audio policies
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From cdad052f71e1b7247ebbd49d0a91a3451d82d59b Mon Sep 17 00:00:00 2001
From 9bb7c55d10974225ec09f5e5b7e7b18ad4c53d80 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Sat, 12 Mar 2022 18:07:43 -0500
Subject: [PATCH 22/28] fixup! Not all sources in a route are valid. Dont
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From da6de6f05a542c4c0b060f5571baae7812e2240c Mon Sep 17 00:00:00 2001
From 618216bf303f76f6cb62d04de25eefe0d4a39494 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Sat, 16 Apr 2022 14:30:14 -0400
Subject: [PATCH 23/28] Add a prop to change Samsung flash strength
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 2da3956f11a682400f1542c025b96406c67cdc8f Mon Sep 17 00:00:00 2001
From 77d472080eb00e2da0d4892bfb9426d7977517c0 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Mon, 2 May 2022 17:37:09 -0400
Subject: [PATCH 24/28] Support variable flash strength on samsung hal 4.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 08882172bd587fc2d3cf6001988c757b6fa728a7 Mon Sep 17 00:00:00 2001
From 43d61efb58d846901e3d08925537fe2710717917 Mon Sep 17 00:00:00 2001
From: ponces <[email protected]>
Date: Mon, 24 Oct 2022 09:38:34 +0100
Subject: [PATCH 25/28] voip: Fix high pitched voice on Qualcomm devices
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 91ebecce44f174db96208860f3d7735f5753f73a Mon Sep 17 00:00:00 2001
From 4c5cbb119984594bbb783dca00bf905121710a44 Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Wed, 9 Nov 2022 17:10:52 -0500
Subject: [PATCH 26/28] Fix audio hal 2.0 support. Fixup of Revert "Remove
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 48d937a9244d6bbb42285b151f09d963b1def467 Mon Sep 17 00:00:00 2001
From f019bfa8bb659871cff711acb8ed798b7d1c323c Mon Sep 17 00:00:00 2001
From: Pierre-Hugues Husson <[email protected]>
Date: Wed, 29 Mar 2023 16:53:18 -0400
Subject: [PATCH 27/28] Allow uname syscall in all seccomp -- This is needed
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 167f0a0b3c657397dc1e018770ed09e51655c044 Mon Sep 17 00:00:00 2001
From 4d5623f0dd2196fbe8adf26895133d65faeac7ef Mon Sep 17 00:00:00 2001
From: Alberto Ponces <[email protected]>
Date: Sun, 30 Apr 2023 23:29:04 +0100
Subject: [PATCH 28/28] audiopolicy: Fix broken mic while video recording on
Expand Down
Loading

0 comments on commit 0ae346d

Please sign in to comment.