Initial 2.1.0 update

This commit is contained in:
2024-06-04 17:55:15 +03:00
parent 62b24d5705
commit 545376afb2
17 changed files with 573 additions and 503 deletions

View File

@@ -22,8 +22,8 @@ extern "C" {
/* versioning */
#define PMT_MAJOR 2
#define PMT_LEVEL 0
#define PMT_PATCH 0
#define PMT_MINOR 1
#define PMT_PATCHLEVEL 0
#if defined(__cplusplus)
}

View File

@@ -32,27 +32,28 @@ extern "C" {
#define PMT_PACKAGE_NAME "Partition Manager"
/* variable definations */
extern char *out;
extern char *outdir;
extern char *cust_cxt;
extern char *target_partition;
extern char *target_flash_file;
extern char *format_fs;
extern char *partition_type;
extern char* out;
extern char* cust_cxt;
extern char* target_partition;
extern char* target_flash_file;
extern char* format_fs;
extern char* partition_type;
extern char* bin_name;
extern bool pmt_use_logical;
extern bool pmt_use_cust_cxt;
extern bool pmt_ab;
extern bool pmt_logical;
extern bool pmt_silent;
extern bool pmt_flash;
extern bool pmt_backup;
extern bool pmt_format;
extern bool pmt_force_mode;
/* function definations */
void listpart();
void check_psf();
int listpart();
void check_dev_point();
void check_root();
void pmt(unsigned short progress_code);
int pmt(unsigned short progress_code);
void version();
#endif /* __PMT_H_ */