4d6b170769
* Fixing compiler warnings with -Wextra * More warnings suppression, WIP * Even more warning fixes * Added new lines at end of text files. * Padding fix * Additional fixes to warnings on different build configurations; added -Wextra to default build pipeline * Fixes for Secplus v1 * -additional warnings * +-Wredundant-decls fixes * FuriHal: print stack overflow task name in console * FuriHal: add missing include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
23 lines
829 B
C
23 lines
829 B
C
#include <furi/record.h>
|
|
#include <m-string.h>
|
|
#include "storage.h"
|
|
#include <toolbox/tar/tar_archive.h>
|
|
|
|
#define INT_PATH "/int"
|
|
|
|
FS_Error storage_int_backup(Storage* api, const char* dstname) {
|
|
TarArchive* archive = tar_archive_alloc(api);
|
|
bool success = tar_archive_open(archive, dstname, TAR_OPEN_MODE_WRITE) &&
|
|
tar_archive_add_dir(archive, INT_PATH, "") && tar_archive_finalize(archive);
|
|
tar_archive_free(archive);
|
|
return success ? FSE_OK : FSE_INTERNAL;
|
|
}
|
|
|
|
FS_Error storage_int_restore(Storage* api, const char* srcname) {
|
|
TarArchive* archive = tar_archive_alloc(api);
|
|
bool success = tar_archive_open(archive, srcname, TAR_OPEN_MODE_READ) &&
|
|
tar_archive_unpack_to(archive, INT_PATH);
|
|
tar_archive_free(archive);
|
|
return success ? FSE_OK : FSE_INTERNAL;
|
|
}
|