2020-03-19 12:00:42 +00:00
|
|
|
#pragma once
|
|
|
|
#include "../../utils/types.h"
|
2020-04-04 21:15:13 +01:00
|
|
|
#include "../../storage/nx_emmc.h"
|
2020-03-19 12:00:42 +00:00
|
|
|
|
2020-04-04 22:41:09 +01:00
|
|
|
int emmcDumpSpecific(char *part, char *path);
|
2020-04-05 15:07:25 +01:00
|
|
|
int emmcDumpBoot(char *basePath);
|
2020-05-08 19:57:26 +01:00
|
|
|
int mmcFlashFile(char *path, short mmcType, bool warnings);
|
2020-04-05 15:07:25 +01:00
|
|
|
|
|
|
|
int emmcDumpPart(char *path, sdmmc_storage_t *mmcstorage, emmc_part_t *part);
|
2020-05-08 19:57:26 +01:00
|
|
|
int emmcRestorePart(char *path, sdmmc_storage_t *mmcstorage, emmc_part_t *part, bool warnings);
|