HomeSort by relevance Sort by last modified time
    Searched defs:modprobe (Results 1 - 4 of 4) sorted by null

  /external/autotest/client/site_tests/security_ModuleLocking/
security_ModuleLocking.py 66 def modprobe(self, module): member in class:security_ModuleLocking
68 If a module is not already loaded in the kernel, load it via modprobe.
73 utils.system("modprobe %s" % (module))
95 self.modprobe(module)
153 self.modprobe(module)
162 self.modprobe(module)
  /external/kmod/libkmod/python/kmod/
kmod.pyx 82 raise _KmodError('Could not modprobe')
105 def modprobe(self, name, quiet=False, *args, **kwargs): member in class:Kmod
114 raise _KmodError('Could not modprobe %s' % name)
  /external/ltp/testcases/kernel/device-drivers/zram/
zram03.c 46 static int modprobe; variable
155 if (system("modprobe zram") == -1) {
157 "system(modprobe zram) failed");
159 modprobe = 1;
172 if (modprobe == 1 && system("rmmod zram") == -1)