]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/btrfs.h
stm32mp1: move MTDPART configuration in Kconfig
[thirdparty/u-boot.git] / include / btrfs.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
0c936ee3
MB
2/*
3 * BTRFS filesystem implementation for U-Boot
4 *
5 * 2017 Marek Behun, CZ.NIC, marek.behun@nic.cz
0c936ee3
MB
6 */
7
8#ifndef __U_BOOT_BTRFS_H__
9#define __U_BOOT_BTRFS_H__
10
11int btrfs_probe(struct blk_desc *, disk_partition_t *);
12int btrfs_ls(const char *);
13int btrfs_exists(const char *);
14int btrfs_size(const char *, loff_t *);
15int btrfs_read(const char *, void *, loff_t, loff_t, loff_t *);
16void btrfs_close(void);
17int btrfs_uuid(char *);
18void btrfs_list_subvols(void);
19
20#endif /* __U_BOOT_BTRFS_H__ */