]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
cmd: fat: add fatmkdir command
authorAKASHI Takahiro <takahiro.akashi@linaro.org>
Tue, 11 Sep 2018 06:59:11 +0000 (15:59 +0900)
committerAlexander Graf <agraf@suse.de>
Sun, 23 Sep 2018 19:55:30 +0000 (21:55 +0200)
In this patch, a new command, fatmkdir, is added.

Please note that, as there is no notion of "current directory" on u-boot,
a directory name specified must contains an absolute directory path as
a parent directory. Otherwise, "/" (root directory) is assumed.

Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Signed-off-by: Alexander Graf <agraf@suse.de>
cmd/fat.c

index 2a5f7bfc2690d5be5759797ec6af031dd9b708c6..b685bf70a2b3a41f24420a7ccbb0172acc473779 100644 (file)
--- a/cmd/fat.c
+++ b/cmd/fat.c
@@ -151,4 +151,17 @@ U_BOOT_CMD(
        "    - write file 'filename' from the address 'addr' in RAM\n"
        "      to 'dev' on 'interface'"
 );
+
+static int do_fat_mkdir(cmd_tbl_t *cmdtp, int flag, int argc,
+                       char * const argv[])
+{
+       return do_mkdir(cmdtp, flag, argc, argv, FS_TYPE_FAT);
+}
+
+U_BOOT_CMD(
+       fatmkdir,       4,      1,      do_fat_mkdir,
+       "create a directory",
+       "<interface> [<dev[:part]>] <directory>\n"
+       "    - create a directory in 'dev' on 'interface'"
+);
 #endif