Add support for BeFS for EFI GPT and Mac partition table, fix previous

commit
This commit is contained in:
François Revol 2020-07-14 09:58:28 +02:00 committed by Christophe Grenier
parent 40d473abc9
commit 68135f43fa

View file

@ -87,5 +87,6 @@ int recover_BeFS(const disk_t *disk_car, const struct disk_super_block *beos_blo
partition->part_size=le64(beos_block->num_blocks) << le32(beos_block->block_shift); partition->part_size=le64(beos_block->num_blocks) << le32(beos_block->block_shift);
partition->part_type_i386=(unsigned char)P_BEOS; partition->part_type_i386=(unsigned char)P_BEOS;
partition->part_type_mac=PMAC_BEOS; partition->part_type_mac=PMAC_BEOS;
partition->part_type_gpt=GPT_ENT_TYPE_BEOS_BFS;
return 0; return 0;
} }