mirror of
https://github.com/bkerler/edl.git
synced 2024-11-14 11:05:05 -05:00
don't check xbl luns
This commit is contained in:
parent
072ac71ae6
commit
05dfe77239
1 changed files with 1 additions and 1 deletions
|
@ -1480,7 +1480,7 @@ class firehose(metaclass=LogBase):
|
|||
_, lun_b, gpt_data_b, guid_gpt_b = resp
|
||||
backup_gpt_data_b, backup_guid_gpt_b = self.get_gpt(lun_b, 0, 0 , 0, guid_gpt_b.header.backup_lba)
|
||||
|
||||
if not check_gpt_hdr:
|
||||
if not check_gpt_hdr and partitionname_a[:3] != "xbl": # xbl partition don't need check consistency
|
||||
sts, gpt_data_a, backup_gpt_data_a = ensure_gpt_hdr_consistency(guid_gpt_a, backup_guid_gpt_a, gpt_data_a, backup_gpt_data_a)
|
||||
if not sts:
|
||||
return False
|
||||
|
|
Loading…
Reference in a new issue