mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
0914011310
We should not use typedefs in U-Boot. They cannot be used as forward declarations which means that header files must include the full header to access them. Drop the typedef and rename the struct to remove the _s suffix which is now not useful. This requires quite a few header-file additions. Signed-off-by: Simon Glass <sjg@chromium.org>
27 lines
558 B
C
27 lines
558 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* 2017 by Marek Behun <marek.behun@nic.cz>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <command.h>
|
|
#include <btrfs.h>
|
|
#include <fs.h>
|
|
|
|
int do_btrsubvol(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
|
{
|
|
if (argc != 3)
|
|
return CMD_RET_USAGE;
|
|
|
|
if (fs_set_blk_dev(argv[1], argv[2], FS_TYPE_BTRFS))
|
|
return 1;
|
|
|
|
btrfs_list_subvols();
|
|
return 0;
|
|
}
|
|
|
|
U_BOOT_CMD(btrsubvol, 3, 1, do_btrsubvol,
|
|
"list subvolumes of a BTRFS filesystem",
|
|
"<interface> <dev[:part]>\n"
|
|
" - List subvolumes of a BTRFS filesystem."
|
|
)
|