]>
Commit | Line | Data |
---|---|---|
ad15749b HG |
1 | /* |
2 | * UBIFS u-boot wrapper functions header | |
3 | * | |
4 | * Copyright (C) 2006-2008 Nokia Corporation | |
5 | * | |
6 | * (C) Copyright 2008-2009 | |
7 | * Stefan Roese, DENX Software Engineering, [email protected]. | |
8 | * | |
9 | * SPDX-License-Identifier: GPL-2.0+ | |
10 | * | |
11 | * Authors: Artem Bityutskiy (Битюцкий Артём) | |
12 | * Adrian Hunter | |
13 | */ | |
14 | ||
15 | #ifndef __UBIFS_UBOOT_H__ | |
16 | #define __UBIFS_UBOOT_H__ | |
17 | ||
18 | int ubifs_init(void); | |
19 | int uboot_ubifs_mount(char *vol_name); | |
20 | void uboot_ubifs_umount(void); | |
21 | int ubifs_is_mounted(void); | |
22 | int ubifs_load(char *filename, u32 addr, u32 size); | |
23 | ||
4101f687 | 24 | int ubifs_set_blk_dev(struct blk_desc *rbdd, disk_partition_t *info); |
ad15749b | 25 | int ubifs_ls(const char *dir_name); |
29cc5bca HG |
26 | int ubifs_exists(const char *filename); |
27 | int ubifs_size(const char *filename, loff_t *size); | |
ad15749b HG |
28 | int ubifs_read(const char *filename, void *buf, loff_t offset, |
29 | loff_t size, loff_t *actread); | |
29cc5bca | 30 | void ubifs_close(void); |
ad15749b HG |
31 | |
32 | #endif /* __UBIFS_UBOOT_H__ */ |