2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2009-03-19 14:35:50 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2008
|
|
|
|
* Stefan Roese, DENX Software Engineering, sr@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* UBIFS command support
|
|
|
|
*/
|
|
|
|
|
|
|
|
#undef DEBUG
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <config.h>
|
|
|
|
#include <command.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2015-09-17 22:46:56 +00:00
|
|
|
#include <ubifs_uboot.h>
|
2010-10-28 12:09:22 +00:00
|
|
|
|
2009-03-19 14:35:50 +00:00
|
|
|
static int ubifs_initialized;
|
|
|
|
static int ubifs_mounted;
|
|
|
|
|
2018-07-06 08:26:01 +00:00
|
|
|
int cmd_ubifs_mount(char *vol_name)
|
2009-03-19 14:35:50 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
debug("Using volume %s\n", vol_name);
|
|
|
|
|
|
|
|
if (ubifs_initialized == 0) {
|
|
|
|
ubifs_init();
|
|
|
|
ubifs_initialized = 1;
|
|
|
|
}
|
|
|
|
|
2014-06-24 08:10:04 +00:00
|
|
|
ret = uboot_ubifs_mount(vol_name);
|
2009-03-19 14:35:50 +00:00
|
|
|
if (ret)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ubifs_mounted = 1;
|
|
|
|
|
2018-07-06 08:26:01 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2020-05-10 17:40:03 +00:00
|
|
|
|
|
|
|
static int do_ubifs_mount(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
2018-07-06 08:26:01 +00:00
|
|
|
{
|
|
|
|
char *vol_name;
|
|
|
|
|
|
|
|
if (argc != 2)
|
|
|
|
return CMD_RET_USAGE;
|
|
|
|
|
|
|
|
vol_name = argv[1];
|
|
|
|
|
|
|
|
return cmd_ubifs_mount(vol_name);
|
2009-03-19 14:35:50 +00:00
|
|
|
}
|
|
|
|
|
2010-11-01 16:28:22 +00:00
|
|
|
int ubifs_is_mounted(void)
|
|
|
|
{
|
|
|
|
return ubifs_mounted;
|
|
|
|
}
|
|
|
|
|
2018-07-06 08:25:12 +00:00
|
|
|
int cmd_ubifs_umount(void)
|
2010-11-01 16:28:22 +00:00
|
|
|
{
|
2018-07-06 08:25:12 +00:00
|
|
|
if (ubifs_initialized == 0) {
|
|
|
|
printf("No UBIFS volume mounted!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 22:46:56 +00:00
|
|
|
uboot_ubifs_umount();
|
2010-11-01 16:28:22 +00:00
|
|
|
ubifs_mounted = 0;
|
|
|
|
ubifs_initialized = 0;
|
2018-07-06 08:25:12 +00:00
|
|
|
|
|
|
|
return 0;
|
2010-11-01 16:28:22 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_ubifs_umount(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
2010-10-28 12:09:22 +00:00
|
|
|
{
|
|
|
|
if (argc != 1)
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2010-10-28 12:09:22 +00:00
|
|
|
|
2018-07-06 08:25:12 +00:00
|
|
|
return cmd_ubifs_umount();
|
2010-10-28 12:09:22 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_ubifs_ls(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
2009-03-19 14:35:50 +00:00
|
|
|
{
|
|
|
|
char *filename = "/";
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!ubifs_mounted) {
|
2010-10-28 12:09:29 +00:00
|
|
|
printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
|
2009-03-19 14:35:50 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc == 2)
|
|
|
|
filename = argv[1];
|
|
|
|
debug("Using filename %s\n", filename);
|
|
|
|
|
|
|
|
ret = ubifs_ls(filename);
|
2013-10-09 23:32:26 +00:00
|
|
|
if (ret) {
|
|
|
|
printf("** File not found %s **\n", filename);
|
|
|
|
ret = CMD_RET_FAILURE;
|
|
|
|
}
|
2009-03-19 14:35:50 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_ubifs_load(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
2009-03-19 14:35:50 +00:00
|
|
|
{
|
|
|
|
char *filename;
|
2009-07-07 14:01:02 +00:00
|
|
|
char *endp;
|
2009-03-19 14:35:50 +00:00
|
|
|
int ret;
|
|
|
|
u32 addr;
|
|
|
|
u32 size = 0;
|
|
|
|
|
|
|
|
if (!ubifs_mounted) {
|
|
|
|
printf("UBIFS not mounted, use ubifs mount to mount volume first!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-07-16 23:06:04 +00:00
|
|
|
if (argc < 3)
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2009-03-19 14:35:50 +00:00
|
|
|
|
2009-07-07 14:01:02 +00:00
|
|
|
addr = simple_strtoul(argv[1], &endp, 16);
|
2010-07-16 23:06:04 +00:00
|
|
|
if (endp == argv[1])
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2009-07-07 14:01:02 +00:00
|
|
|
|
2009-03-19 14:35:50 +00:00
|
|
|
filename = argv[2];
|
|
|
|
|
2009-07-07 14:01:02 +00:00
|
|
|
if (argc == 4) {
|
|
|
|
size = simple_strtoul(argv[3], &endp, 16);
|
2010-07-16 23:06:04 +00:00
|
|
|
if (endp == argv[3])
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2009-07-07 14:01:02 +00:00
|
|
|
}
|
2009-03-19 14:35:50 +00:00
|
|
|
debug("Loading file '%s' to address 0x%08x (size %d)\n", filename, addr, size);
|
|
|
|
|
|
|
|
ret = ubifs_load(filename, addr, size);
|
2013-10-09 23:32:26 +00:00
|
|
|
if (ret) {
|
|
|
|
printf("** File not found %s **\n", filename);
|
|
|
|
ret = CMD_RET_FAILURE;
|
|
|
|
}
|
2009-03-19 14:35:50 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
U_BOOT_CMD(
|
|
|
|
ubifsmount, 2, 0, do_ubifs_mount,
|
2009-03-24 02:27:34 +00:00
|
|
|
"mount UBIFS volume",
|
2009-07-07 14:01:02 +00:00
|
|
|
"<volume-name>\n"
|
|
|
|
" - mount 'volume-name' volume"
|
2009-05-24 15:06:54 +00:00
|
|
|
);
|
2009-03-19 14:35:50 +00:00
|
|
|
|
2010-10-28 12:09:22 +00:00
|
|
|
U_BOOT_CMD(
|
|
|
|
ubifsumount, 1, 0, do_ubifs_umount,
|
|
|
|
"unmount UBIFS volume",
|
|
|
|
" - unmount current volume"
|
|
|
|
);
|
|
|
|
|
2010-07-31 13:01:53 +00:00
|
|
|
U_BOOT_CMD(
|
|
|
|
ubifsls, 2, 0, do_ubifs_ls,
|
2009-05-24 15:06:54 +00:00
|
|
|
"list files in a directory",
|
|
|
|
"[directory]\n"
|
|
|
|
" - list files in a 'directory' (default '/')"
|
|
|
|
);
|
2009-03-19 14:35:50 +00:00
|
|
|
|
2010-07-31 13:01:53 +00:00
|
|
|
U_BOOT_CMD(
|
|
|
|
ubifsload, 4, 0, do_ubifs_load,
|
2009-05-24 15:06:54 +00:00
|
|
|
"load file from an UBIFS filesystem",
|
|
|
|
"<addr> <filename> [bytes]\n"
|
|
|
|
" - load file 'filename' to address 'addr'"
|
|
|
|
);
|