diff --git a/src/userland/mbr/main.c b/src/userland/mbr/main.c index 280807c..6b8fe83 100644 --- a/src/userland/mbr/main.c +++ b/src/userland/mbr/main.c @@ -24,6 +24,8 @@ printf("partition %i: %i: start: %i, end: %i, active: %i\n", entry, partition->type, partition->lbaStart, partition->lbaStart + partition->sectorCount, partition->active); if (partition->type == 0xEE) { printf("partition %i is a GPT\n", entry); + // TODO + // look at https://uefi.org/sites/default/files/resources/UEFI_Spec_2_10_Aug29.pdf, page 110 for information for this } } }