mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-19 05:40:14 +10:00
Fix an issue with incorrect logging of secure boot state
This commit is contained in:
+1
-2
@@ -570,8 +570,7 @@ namespace WPinternals
|
||||
{
|
||||
// This is necessary, because the partitions and backup-partitions can exchange.
|
||||
// This may cause the startsector to be higher than the maximum allowed sector for flashing with a Lumia V1 programmer (hardcoded in programmer)
|
||||
List<string> RevisePartitions = new(new string[] { "SBL1", "SBL2", "SBL3", "UEFI", "TZ", "RPM", "WINSECAPP" });
|
||||
foreach (string RevisePartitionName in RevisePartitions)
|
||||
foreach (string RevisePartitionName in (List<string>)(new(new string[] { "SBL1", "SBL2", "SBL3", "UEFI", "TZ", "RPM", "WINSECAPP" })))
|
||||
{
|
||||
Partition RevisePartition = GetPartition(RevisePartitionName);
|
||||
Partition ReviseBackupPartition = GetPartition("BACKUP_" + RevisePartitionName);
|
||||
|
||||
Reference in New Issue
Block a user