From: Michael Gernoth Date: Tue, 30 Oct 2012 20:03:35 +0000 (+0100) Subject: don't try to load the module if it is already loaded X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/ms2-fixes/commitdiff_plain/1d2be5c5c2c63173ee6dd353109854e354604518?ds=sidebyside don't try to load the module if it is already loaded --- diff --git a/MS2Debounce/src/de/rmdir/ms2debounce/DebounceModuleHelper.java b/MS2Debounce/src/de/rmdir/ms2debounce/DebounceModuleHelper.java index 2b088d7..1a424f8 100644 --- a/MS2Debounce/src/de/rmdir/ms2debounce/DebounceModuleHelper.java +++ b/MS2Debounce/src/de/rmdir/ms2debounce/DebounceModuleHelper.java @@ -82,6 +82,10 @@ public class DebounceModuleHelper } public synchronized boolean _loadModule() throws NotRootedException,ShellException { + if (isLoaded()) { + return true; + } + File insmod = new File("/system/bin/insmod"); if (!insmod.exists()) { insmod = new File("/system/xbin/insmod");