summaryrefslogtreecommitdiffstats
path: root/fastboot/fs.h
blob: 0a5f5a4d7bab22732d7412dc6e844cf8c4079e64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _FS_H_
#define _FS_H_

#include <string>
#include <stdint.h>

struct fs_generator;

const struct fs_generator* fs_get_generator(const std::string& fs_type);
int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize,
    const std::string& initial_dir, unsigned eraseBlkSize = 0, unsigned logicalBlkSize = 0);

#endif