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