#include #include #include "storedev/storedev.h" #include "diskpart/mbr.h" #include "util/util.h" #include "kprintf.h" void diskpart_init(void) { LOG("diskpart", "probing for disks with partitions\n"); StoreDev *sd, *sdtmp; LL_FOREACH_SAFE(STOREDEV_LIST.head, sd, sdtmp) { diskpart_mbr_probe(sd); } }