Commit 0cadfc09534033e2b9694bd2d226b5dcfebd6704

Authored by Robert P. J. Day
Committed by Adrian Bunk
1 parent 3239c49cf1

Documentation: Clarify when module debugging actually works.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Adrian Bunk <bunk@kernel.org>

Showing 1 changed file with 4 additions and 0 deletions Side-by-side Diff

Documentation/debugging-modules.txt
... ... @@ -16,4 +16,8 @@
16 16 echo 'exec /sbin/modprobe "$@"' >> /tmp/modprobe
17 17 chmod a+x /tmp/modprobe
18 18 echo /tmp/modprobe > /proc/sys/kernel/modprobe
  19 +
  20 +Note that the above applies only when the *kernel* is requesting
  21 +that the module be loaded -- it won't have any effect if that module
  22 +is being loaded explicitly using "modprobe" from userspace.