summaryrefslogtreecommitdiffstats
path: root/commands/lsmod.c
blob: e54eadc2ffb7e2733cdfc5d3fc57845f9f656e61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <common.h>
#include <command.h>
#include <complete.h>
#include <module.h>

static int do_lsmod(int argc, char *argv[])
{
	struct module *mod;

	for_each_module(mod)
		printf("%s\n", mod->name);

	return 0;
}

BAREBOX_CMD_START(lsmod)
	.cmd		= do_lsmod,
	.usage		= "list modules",
	BAREBOX_CMD_COMPLETE(empty_complete)
BAREBOX_CMD_END