forked from TeamWin/Team-Win-Recovery-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ddftw.h
55 lines (45 loc) · 1.19 KB
/
ddftw.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Header goes here
#ifndef _DDFTW_HEADER
#define _DDFTW_HEADER
static const char tw_dinfo_file[] = "/etc/device.info";
static const char tw_block[] = "/dev/block/";
static const char tw_mtd[] = "/dev/mtd/";
static int has_datadata = 0;
enum backup_method {
unknown = 0,
none,
image,
files,
};
enum flash_memory_type {
unknown_flash_memory_type = 0,
mtd,
emmc,
};
struct dInfo {
char mnt[20];
char blk[100];
char dev[100];
char fst[10];
char fnm[256];
char format_location[256];
unsigned long long sze;
unsigned long long used;
unsigned long long bsze;
int mountable;
enum backup_method backup;
enum flash_memory_type memory_type;
};
struct dInfo* findDeviceByLabel(const char* label);
struct dInfo* findDeviceByBlockDevice(const char* blockDevice);
void readRecFstab();
void verifyFst();
void createFstab();
void listMntInfo(struct dInfo* mMnt, char* variable_name);
unsigned long long getUsedSizeViaDu(const char* path);
int getLocations();
void updateUsedSized();
extern struct dInfo tmp, sys, dat, datadata, boo, rec, cac, sdcext, sdcint, ase, sde, sp1, sp2, sp3;
extern char tw_device_name[20];
void update_system_details();
#endif // _DDFTW_HEADER