2019-02-24 23:09:34 -05:00
|
|
|
#pragma once
|
2017-02-28 05:37:47 +08:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2019-03-07 21:32:01 -05:00
|
|
|
#define HEADER_FILE "header"
|
2017-04-28 21:48:38 +08:00
|
|
|
#define KERNEL_FILE "kernel"
|
|
|
|
#define RAMDISK_FILE "ramdisk.cpio"
|
|
|
|
#define SECOND_FILE "second"
|
2017-10-07 22:08:10 +08:00
|
|
|
#define EXTRA_FILE "extra"
|
2019-03-13 16:51:22 -04:00
|
|
|
#define KER_DTB_FILE "kernel_dtb"
|
2018-10-19 23:10:47 -04:00
|
|
|
#define RECV_DTBO_FILE "recovery_dtbo"
|
2019-03-13 16:51:22 -04:00
|
|
|
#define DTB_FILE "dtb"
|
2017-04-28 21:48:38 +08:00
|
|
|
#define NEW_BOOT "new-boot.img"
|
2017-03-05 01:50:36 +08:00
|
|
|
|
2017-02-28 05:37:47 +08:00
|
|
|
// Main entries
|
2019-03-07 21:32:01 -05:00
|
|
|
int unpack(const char *image, bool hdr = false);
|
2017-03-08 00:54:23 +08:00
|
|
|
void repack(const char* orig_image, const char* out_image);
|
2017-03-04 21:16:59 +08:00
|
|
|
void hexpatch(const char *image, const char *from, const char *to);
|
2017-12-21 03:36:18 +08:00
|
|
|
int cpio_commands(int argc, char *argv[]);
|
2017-11-11 01:30:33 +08:00
|
|
|
int dtb_commands(const char *cmd, int argc, char *argv[]);
|
2017-02-28 05:37:47 +08:00
|
|
|
|
2018-08-10 00:40:23 +08:00
|
|
|
// Pattern
|
2019-02-24 23:09:34 -05:00
|
|
|
bool patch_verity(void **buf, uint32_t *size, bool patch = true);
|
2018-08-10 00:40:23 +08:00
|
|
|
void patch_encryption(void **buf, uint32_t *size);
|