this repo has no description
1
fork

Configure Feed

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

Skip kernel module handling on Android

Android does not provide utilities like modprobe

+3
+3
src/startup/darling.c
··· 74 74 setuid(0); 75 75 setgid(0); 76 76 77 + /* On Android we handle kernel modules manually */ 78 + #ifndef __ANDROID_API__ 77 79 if (!isModuleLoaded()) 78 80 loadKernelModule(); 81 + #endif 79 82 80 83 prefix = getenv("DPREFIX"); 81 84 if (!prefix)