Minimal bootable disk image builder
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(gpt): add pp, rename make to v, test convention

- Add pp for Gpt.t (E415)
- Rename Gpt.make to Gpt.v (E331)
- Apply E600 test module convention
- Update uniboot call site for Gpt.v rename

+1 -1
+1 -1
lib/uniboot.ml
··· 205 205 in 206 206 207 207 (* Create GPT *) 208 - let* gpt = Gpt.make ~disk_sectors ~sector_size gpt_partitions in 208 + let* gpt = Gpt.v ~disk_sectors ~sector_size gpt_partitions in 209 209 Log.info (fun m -> 210 210 m "Created GPT with %d partitions" (List.length gpt_partitions)); 211 211