move boot_storage.h/.c to bdk/storage, check result of ensure_partition

This commit is contained in:
Christoph Baumann
2025-04-22 14:25:14 +02:00
parent fe5e4dc40a
commit 4e9e21b3b1
6 changed files with 11 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
#ifndef _BOOT_STORAGE_H
#define _BOOT_STORAGE_H
#include <utils/types.h>
// check if boot1 (1mb), boot1, gpp, sd (in that order) have fat32 partition,
// mount the partition and set the current drive to it
bool boot_storage_mount();
void boot_storage_unmount();
void boot_storage_end();
bool boot_storage_get_mounted();
bool boot_storage_get_initialized();
#endif