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

View File

@ -14,6 +14,7 @@
#include "dev/dev.h"
#include "randcrypto/randcrypto.h"
#include "time/time.h"
#include "diskpart/diskpart.h"
void log_bootinfo(void) {
char buf[100];
@ -46,6 +47,7 @@ void kmain(void) {
randcrypto_init();
dev_init();
storedev_init();
diskpart_init();
baseimg_init();
vfs_init();
proc_init();