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

static int do_lsmod (cmd_tbl_t *cmdtp, 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_END