2018-05-06 21:58:06 +00:00
|
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2015-09-17 22:46:56 +00:00
|
|
|
|
/*
|
|
|
|
|
* UBIFS u-boot wrapper functions header
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2006-2008 Nokia Corporation
|
|
|
|
|
*
|
|
|
|
|
* (C) Copyright 2008-2009
|
|
|
|
|
* Stefan Roese, DENX Software Engineering, sr@denx.de.
|
|
|
|
|
*
|
|
|
|
|
* Authors: Artem Bityutskiy (Битюцкий Артём)
|
|
|
|
|
* Adrian Hunter
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __UBIFS_UBOOT_H__
|
|
|
|
|
#define __UBIFS_UBOOT_H__
|
|
|
|
|
|
2020-05-10 17:39:58 +00:00
|
|
|
|
struct blk_desc;
|
|
|
|
|
struct disk_partition;
|
|
|
|
|
|
2015-09-17 22:46:56 +00:00
|
|
|
|
int ubifs_init(void);
|
|
|
|
|
int uboot_ubifs_mount(char *vol_name);
|
|
|
|
|
void uboot_ubifs_umount(void);
|
|
|
|
|
int ubifs_is_mounted(void);
|
|
|
|
|
int ubifs_load(char *filename, u32 addr, u32 size);
|
|
|
|
|
|
2020-05-10 17:39:57 +00:00
|
|
|
|
int ubifs_set_blk_dev(struct blk_desc *rbdd, struct disk_partition *info);
|
2015-09-17 22:46:56 +00:00
|
|
|
|
int ubifs_ls(const char *dir_name);
|
2015-09-17 22:46:57 +00:00
|
|
|
|
int ubifs_exists(const char *filename);
|
|
|
|
|
int ubifs_size(const char *filename, loff_t *size);
|
2015-09-17 22:46:56 +00:00
|
|
|
|
int ubifs_read(const char *filename, void *buf, loff_t offset,
|
|
|
|
|
loff_t size, loff_t *actread);
|
2015-09-17 22:46:57 +00:00
|
|
|
|
void ubifs_close(void);
|
2015-09-17 22:46:56 +00:00
|
|
|
|
|
|
|
|
|
#endif /* __UBIFS_UBOOT_H__ */
|