aboutsummaryrefslogtreecommitdiff
path: root/cmd/fs.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-04-10 08:18:18 -0400
committerTom Rini <trini@konsulko.com>2019-04-10 08:18:18 -0400
commit48ff1bc4f0a97c3291d0c87c2717fc1d79da5ef5 (patch)
tree52c7f1f8b5f402e48fffbf4cc823da0f9f4d980c /cmd/fs.c
parent4c24dab391003b99b1e0784fd41fe756cb07039e (diff)
parent0a8406602ae5f234f3f670ab59628673cc52ff4d (diff)
Merge branch '2019-04-09-master-imports-fs'
- test.py tests for mmc - ext4 symlink support and other fixes - ext4 block group descriptor sizing
Diffstat (limited to 'cmd/fs.c')
-rw-r--r--cmd/fs.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/cmd/fs.c b/cmd/fs.c
index 94467671be..aaafbf9b52 100644
--- a/cmd/fs.c
+++ b/cmd/fs.c
@@ -76,6 +76,20 @@ U_BOOT_CMD(
" device type 'interface' instance 'dev'."
)
+static int do_ln_wrapper(cmd_tbl_t *cmdtp, int flag, int argc,
+ char * const argv[])
+{
+ return do_ln(cmdtp, flag, argc, argv, FS_TYPE_ANY);
+}
+
+U_BOOT_CMD(
+ ln, 5, 1, do_ln_wrapper,
+ "Create a symbolic link",
+ "<interface> <dev[:part]> target linkname\n"
+ " - create a symbolic link to 'target' with the name 'linkname' on\n"
+ " device type 'interface' instance 'dev'."
+)
+
static int do_fstype_wrapper(cmd_tbl_t *cmdtp, int flag, int argc,
char * const argv[])
{