aboutsummaryrefslogtreecommitdiff
path: root/lsmod.c
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-03-08 06:42:34 +0000
committerErik Andersen <andersen@codepoet.org>2000-03-08 06:42:34 +0000
commit54969a1f6443b98c6874bd611de89b9ce30ca116 (patch)
treeb8803e07d5242f60a9668658c39d3ef33bf21b4b /lsmod.c
parent692a4502b0205f083855a102f906e206733b5b93 (diff)
downloadbusybox-54969a1f6443b98c6874bd611de89b9ce30ca116.tar.gz
Fixed up lsmod so it works with my devmodules kernel driver,
and with /proc. -Erik
Diffstat (limited to 'lsmod.c')
-rw-r--r--lsmod.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/lsmod.c b/lsmod.c
index b0b37bdd7..b8834d304 100644
--- a/lsmod.c
+++ b/lsmod.c
@@ -25,13 +25,16 @@
#include <stdio.h>
-//#if ! defined BB_FEATURE_USE_PROCFS
-//#error Sorry, I depend on the /proc filesystem right now.
-//#endif
-
extern int lsmod_main(int argc, char **argv)
{
+#if defined BB_FEATURE_USE_DEVPS_N_DEVMTAB
+ char *cmd[] = { "cat", "/dev/modules", "\0" };
+#else
+#if ! defined BB_FEATURE_USE_PROCFS
+#error Sorry, I depend on the /proc filesystem right now.
+#endif
char *cmd[] = { "cat", "/proc/modules", "\0" };
+#endif
exit(cat_main(3, cmd));
}