]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
fs/squashfs: add filesystem commands
authorJoao Marcos Costa <joaomarcos.costa@bootlin.com>
Thu, 30 Jul 2020 13:33:48 +0000 (15:33 +0200)
committerTom Rini <trini@konsulko.com>
Sat, 8 Aug 2020 02:31:32 +0000 (22:31 -0400)
Add 'ls' and 'load' commands.

Signed-off-by: Joao Marcos Costa <joaomarcos.costa@bootlin.com>
MAINTAINERS
cmd/Kconfig
cmd/Makefile
cmd/sqfs.c [new file with mode: 0644]

index c2501e82f6a481a2a40dfcc1cc784893e62c5b5c..8ec6c5db810862471cea0349730a6f7ea14db334 100644 (file)
@@ -974,6 +974,7 @@ M:  Joao Marcos Costa <joaomarcos.costa@bootlin.com>
 S:     Maintained
 F:     fs/squashfs/
 F:     include/sqfs.h
+F:     cmd/sqfs.c
 
 TARGET_BCMNS3
 M:     Bharat Gooty <bharat.gooty@broadcom.com>
index 6ac274e620e406a34570b966a006a76ba4df19a2..23d7e27dc8d175f1374a683d9ffeecfaa4d6693a 100644 (file)
@@ -2090,6 +2090,12 @@ config CMD_FAT
        help
          Support for the FAT fs
 
+config CMD_SQUASHFS
+       bool "SquashFS command support"
+       select FS_SQUASHFS
+       help
+         Enables SquashFS filesystem commands (e.g. load, ls).
+
 config CMD_FS_GENERIC
        bool "filesystem commands"
        help
index 70750375d12865569aa45a9230e89f1f9a7b8422..ef2a22f9b12959ffa7e374a1312c185096338f19 100644 (file)
@@ -63,6 +63,7 @@ obj-$(CONFIG_CMD_EXT4) += ext4.o
 obj-$(CONFIG_CMD_EXT2) += ext2.o
 obj-$(CONFIG_CMD_FAT) += fat.o
 obj-$(CONFIG_CMD_FDT) += fdt.o
+obj-$(CONFIG_CMD_SQUASHFS) += sqfs.o
 obj-$(CONFIG_CMD_FLASH) += flash.o
 obj-$(CONFIG_CMD_FPGA) += fpga.o
 obj-$(CONFIG_CMD_FPGAD) += fpgad.o
diff --git a/cmd/sqfs.c b/cmd/sqfs.c
new file mode 100644 (file)
index 0000000..107038c
--- /dev/null
@@ -0,0 +1,42 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright (C) 2020 Bootlin
+ *
+ * Author: Joao Marcos Costa <joaomarcos.costa@bootlin.com>
+ *
+ * squashfs.c: implements SquashFS related commands
+ */
+
+#include <command.h>
+#include <fs.h>
+#include <squashfs.h>
+
+static int do_sqfs_ls(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
+{
+       return do_ls(cmdtp, flag, argc, argv, FS_TYPE_SQUASHFS);
+}
+
+U_BOOT_CMD(sqfsls, 4, 1, do_sqfs_ls,
+          "List files in directory. Default: root (/).",
+          "<interface> [<dev[:part]>] [directory]\n"
+          "    - list files from 'dev' on 'interface' in 'directory'\n"
+);
+
+static int do_sqfs_load(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
+{
+       return do_load(cmdtp, flag, argc, argv, FS_TYPE_SQUASHFS);
+}
+
+U_BOOT_CMD(sqfsload, 7, 0, do_sqfs_load,
+          "load binary file from a SquashFS filesystem",
+          "<interface> [<dev[:part]> [<addr> [<filename> [bytes [pos]]]]]\n"
+          "    - Load binary file 'filename' from 'dev' on 'interface'\n"
+          "      to address 'addr' from SquashFS filesystem.\n"
+          "      'pos' gives the file position to start loading from.\n"
+          "      If 'pos' is omitted, 0 is used. 'pos' requires 'bytes'.\n"
+          "      'bytes' gives the size to load. If 'bytes' is 0 or omitted,\n"
+          "      the load stops on end of file.\n"
+          "      If either 'pos' or 'bytes' are not aligned to\n"
+          "      ARCH_DMA_MINALIGN then a misaligned buffer warning will\n"
+          "      be printed and performance will suffer for the load."
+);