]> git.ipfire.org Git - people/ms/u-boot.git/blame - cmd/ext4.c
omap3_logic: Fix Environmental location
[people/ms/u-boot.git] / cmd / ext4.c
CommitLineData
a1596438
US
1/*
2 * (C) Copyright 2011 - 2012 Samsung Electronics
3 * EXT4 filesystem implementation in Uboot by
4 * Uma Shankar <uma.shankar@samsung.com>
5 * Manjunatha C Achar <a.manjunatha@samsung.com>
6 *
7 * Ext4fs support
8 * made from existing cmd_ext2.c file of Uboot
9 *
10 * (C) Copyright 2004
11 * esd gmbh <www.esd-electronics.com>
12 * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
13 *
14 * made from cmd_reiserfs by
15 *
16 * (C) Copyright 2003 - 2004
17 * Sysgo Real-Time Solutions, AG <www.elinos.com>
18 * Pavel Bartusek <pba@sysgo.com>
19 *
1a459660 20 * SPDX-License-Identifier: GPL-2.0+
a1596438
US
21 */
22
23/*
24 * Changelog:
25 * 0.1 - Newly created file for ext4fs support. Taken from cmd_ext2.c
26 * file in uboot. Added ext4fs ls load and write support.
27 */
28
29#include <common.h>
30#include <part.h>
31#include <config.h>
32#include <command.h>
33#include <image.h>
34#include <linux/ctype.h>
35#include <asm/byteorder.h>
a1596438
US
36#include <ext4fs.h>
37#include <linux/stat.h>
38#include <malloc.h>
045fa1e1 39#include <fs.h>
a1596438
US
40
41#if defined(CONFIG_CMD_USB) && defined(CONFIG_USB_STORAGE)
42#include <usb.h>
43#endif
44
cf659819
SW
45int do_ext4_size(cmd_tbl_t *cmdtp, int flag, int argc,
46 char *const argv[])
47{
48 return do_size(cmdtp, flag, argc, argv, FS_TYPE_EXT);
49}
50
a1596438
US
51int do_ext4_load(cmd_tbl_t *cmdtp, int flag, int argc,
52 char *const argv[])
53{
b770e88a 54 return do_load(cmdtp, flag, argc, argv, FS_TYPE_EXT);
a1596438
US
55}
56
57int do_ext4_ls(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
58{
045fa1e1 59 return do_ls(cmdtp, flag, argc, argv, FS_TYPE_EXT);
a1596438
US
60}
61
ed34f34d 62#if defined(CONFIG_CMD_EXT4_WRITE)
ed34f34d 63int do_ext4_write(cmd_tbl_t *cmdtp, int flag, int argc,
9f12cd0e 64 char *const argv[])
ed34f34d 65{
9f12cd0e 66 return do_save(cmdtp, flag, argc, argv, FS_TYPE_EXT);
ed34f34d
US
67}
68
9f12cd0e
SR
69U_BOOT_CMD(ext4write, 7, 1, do_ext4_write,
70 "create a file in the root directory",
71 "<interface> <dev[:part]> <addr> <absolute filename path>\n"
72 " [sizebytes] [file offset]\n"
73 " - create a file in / directory");
ed34f34d
US
74
75#endif
76
cf659819
SW
77U_BOOT_CMD(
78 ext4size, 4, 0, do_ext4_size,
79 "determine a file's size",
80 "<interface> <dev[:part]> <filename>\n"
81 " - Find file 'filename' from 'dev' on 'interface'\n"
82 " and determine its size."
83);
84
a1596438
US
85U_BOOT_CMD(ext4ls, 4, 1, do_ext4_ls,
86 "list files in a directory (default /)",
87 "<interface> <dev[:part]> [directory]\n"
b6a30444 88 " - list files from 'dev' on 'interface' in a 'directory'");
a1596438 89
9f12cd0e 90U_BOOT_CMD(ext4load, 7, 0, do_ext4_load,
a1596438 91 "load binary file from a Ext4 filesystem",
2a72dcce 92 "<interface> [<dev[:part]> [addr [filename [bytes [pos]]]]]\n"
b6a30444 93 " - load binary file 'filename' from 'dev' on 'interface'\n"
b770e88a 94 " to address 'addr' from ext4 filesystem");