summaryrefslogtreecommitdiffstats
path: root/commands/lsmod.c
blob: ffca8405a4041083843f2bdafd312a4c3e7e2c66 (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;
}

U_BOOT_CMD_START(lsmod)
	.cmd		= do_lsmod,
	.usage		= "list modules",
U_BOOT_CMD_END