Newer
Older
barebox / commands / insmod.c
@Sascha Hauer Sascha Hauer on 7 Aug 2014 647 bytes move file helper functions to separate file
#include <common.h>
#include <command.h>
#include <module.h>
#include <errno.h>
#include <fs.h>
#include <libfile.h>
#include <malloc.h>

static int do_insmod(int argc, char *argv[])
{
	struct module *module;
	void *buf;
	int len;

	if (argc < 2)
		return COMMAND_ERROR_USAGE;

	buf = read_file(argv[1], &len);
	if (!buf) {
		perror("insmod");
		return 1;
	}

	module = load_module(buf, len);

	free(buf);

	if (module) {
		if (module->init)
			module->init();
	}

	return 0;
}

BAREBOX_CMD_START(insmod)
	.cmd		= do_insmod,
	BAREBOX_CMD_DESC("load a barebox module")
	BAREBOX_CMD_OPTS("[MODULE]")
	BAREBOX_CMD_GROUP(CMD_GRP_MISC)
BAREBOX_CMD_END