Handle disk partitioning

This commit is contained in:
2025-10-19 22:29:19 +02:00
parent 68e0e8848d
commit 01da863b8b
21 changed files with 300 additions and 85 deletions

9
kernel/diskpart/mbr.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef DISKPART_MBR_H_
#define DISKPART_MBR_H_
#include <stdbool.h>
#include "storedev/storedev.h"
bool diskpart_mbr_probe(StoreDev *sd);
#endif // DISKPART_MBR_H_