mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
fs: btrfs: Add U-Boot fs handlers.
Signed-off-by: Marek Behun <marek.behun@nic.cz> create mode 100644 fs/btrfs/Kconfig create mode 100644 fs/btrfs/Makefile create mode 100644 fs/btrfs/btrfs.c create mode 100644 include/btrfs.h
This commit is contained in:
21
include/btrfs.h
Normal file
21
include/btrfs.h
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* BTRFS filesystem implementation for U-Boot
|
||||
*
|
||||
* 2017 Marek Behun, CZ.NIC, marek.behun@nic.cz
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#ifndef __U_BOOT_BTRFS_H__
|
||||
#define __U_BOOT_BTRFS_H__
|
||||
|
||||
int btrfs_probe(struct blk_desc *, disk_partition_t *);
|
||||
int btrfs_ls(const char *);
|
||||
int btrfs_exists(const char *);
|
||||
int btrfs_size(const char *, loff_t *);
|
||||
int btrfs_read(const char *, void *, loff_t, loff_t, loff_t *);
|
||||
void btrfs_close(void);
|
||||
int btrfs_uuid(char *);
|
||||
void btrfs_list_subvols(void);
|
||||
|
||||
#endif /* __U_BOOT_BTRFS_H__ */
|
Reference in New Issue
Block a user