diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-05-06 05:24:41 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-05-06 05:24:41 -0400 |
commit | 1e12ae90590ceb7ff9ff4df1c23811ea57ae22ec (patch) | |
tree | c3a19e73677d8881f422908d59523415852a3569 | |
parent | 2b6497ba84a3c612738a5939c142e33480e8e0f6 (diff) | |
download | busybox-w32-1e12ae90590ceb7ff9ff4df1c23811ea57ae22ec.tar.gz busybox-w32-1e12ae90590ceb7ff9ff4df1c23811ea57ae22ec.tar.bz2 busybox-w32-1e12ae90590ceb7ff9ff4df1c23811ea57ae22ec.zip |
modprobe: add comment about expected modules.dep format
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | modutils/modprobe.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 52f5e1008..d57dbdf75 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c | |||
@@ -8,6 +8,11 @@ | |||
8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | /* Note that unlike older versions of modules.dep/depmod (busybox and m-i-t), | ||
12 | * we expect the full dependency list to be specified in modules.dep. Older | ||
13 | * versions would only export the direct dependency list. | ||
14 | */ | ||
15 | |||
11 | #include "libbb.h" | 16 | #include "libbb.h" |
12 | #include "modutils.h" | 17 | #include "modutils.h" |
13 | #include <sys/utsname.h> | 18 | #include <sys/utsname.h> |