upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
532 B
20 lines
532 B
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* BTRFS filesystem implementation for U-Boot
|
|
*
|
|
* 2017 Marek Behun, CZ.NIC, marek.behun@nic.cz
|
|
*/
|
|
|
|
#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__ */
|
|
|