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