forked from forth32/qhuaweiflash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ulpatcher.h
26 lines (19 loc) · 1.08 KB
/
ulpatcher.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
// Структура, описывающая сигнатуру и положение патча
struct defpatch {
const uint8_t* sig; // сигнатрура
uint32_t sigsize; // длина сигнатуры
int32_t poffset; // смещение до точки патча от конца сигнатуры
};
//***********************************************************************
//* Поиск сигнатуры и наложение патча
//***********************************************************************
uint32_t patch(struct defpatch fp, uint8_t* buf, uint32_t fsize, uint32_t ptype);
//****************************************************
//* Процедуры патча под разные чипсеты и задачи
//****************************************************
uint32_t pv7r22 (uint8_t* buf, uint32_t fsize);
uint32_t pv7r22_2 (uint8_t* buf, uint32_t fsize);
uint32_t pv7r2 (uint8_t* buf, uint32_t fsize);
uint32_t pv7r11 (uint8_t* buf, uint32_t fsize);
uint32_t pv7r1 (uint8_t* buf, uint32_t fsize);
uint32_t perasebad (uint8_t* buf, uint32_t fsize);