this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add stub for rootless_check_trusted

+6
+6
src/sandbox/sandbox.c
··· 153 153 // just return 0 as an indiciation that whatever operation the caller asked about is allowed 154 154 return 0; 155 155 }; 156 + 157 + int rootless_check_trusted(const char* kext_path) { 158 + // also unimplemented 159 + // Darling doesn't have rootless anyways so just return a value indicating trust 160 + return 0; 161 + };