mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
1603092c50
hammerhead 16.0 was reported not booting and shamu 18.1 was reported to take ~15+ minutes to boot hammerhead does not have getrandom so it failed immediately shamu does have getrandom BUT it blocks during init meaning it'll wait until the entropy pool slowly fills In tested I did not discovery this I tested on flox/mako/d852/klte/clark/sailfish/mata/cheeseburger/fajita All the newer ones have working getrandom All the older ones included a patch to make getrandom non blocking on init Signed-off-by: Tad <tad@spotco.us>
26 lines
997 B
Diff
26 lines
997 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Tad <tad@spotco.us>
|
|
Date: Tue, 15 Mar 2022 22:18:26 -0400
|
|
Subject: [PATCH] Expand workaround to all camera executables
|
|
|
|
Signed-off-by: Tad <tad@spotco.us>
|
|
Change-Id: I23513ec0379bbb10829f989690334e9704fd20e2
|
|
---
|
|
h_malloc.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/h_malloc.c b/h_malloc.c
|
|
index dbedbd4..d0cf881 100644
|
|
--- a/h_malloc.c
|
|
+++ b/h_malloc.c
|
|
@@ -1069,7 +1069,8 @@ COLD static void handle_bugs(void) {
|
|
}
|
|
|
|
const char camera_provider[] = "/vendor/bin/hw/android.hardware.camera.provider@2.4-service_64";
|
|
- if (strcmp(camera_provider, path) == 0) {
|
|
+ // Any camera executable on system partition
|
|
+ if (strcmp(camera_provider, path) == 0 || (strstr(path, "camera") != NULL && (strncmp("/system", path, 7) == 0 || strncmp("/vendor", path, 7) == 0))) {
|
|
ro.zero_on_free = false;
|
|
ro.purge_slabs = false;
|
|
ro.region_quarantine_protect = false;
|