Skip to content

Commit

Permalink
Enable GetCustomSplittingAndroidDesiredSpace across profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
gus33000 committed Feb 27, 2024
1 parent c4eb49c commit 201e196
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 0 deletions.
5 changes: 5 additions & 0 deletions FirmwareGen/DeviceProfiles/EpsilonHalfSplit128GB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,10 @@ public Guid GetDiskGuid()
{
return new Guid("efa6243a-085f-e745-f2ce-54d39ef34351");
}

public ulong GetCustomSplittingAndroidDesiredSpace()
{
return 4_294_967_296;
}
}
}
5 changes: 5 additions & 0 deletions FirmwareGen/DeviceProfiles/EpsilonHalfSplit256GB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,10 @@ public Guid GetDiskGuid()
{
return new Guid("efa6243a-085f-e745-f2ce-54d39ef34351");
}

public ulong GetCustomSplittingAndroidDesiredSpace()
{
return 4_294_967_296;
}
}
}
5 changes: 5 additions & 0 deletions FirmwareGen/DeviceProfiles/EpsilonMaximizedForWindows.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,10 @@ public Guid GetDiskGuid()
{
return new Guid("efa6243a-085f-e745-f2ce-54d39ef34351");
}

public ulong GetCustomSplittingAndroidDesiredSpace()
{
return 4_294_967_296;
}
}
}
5 changes: 5 additions & 0 deletions FirmwareGen/DeviceProfiles/MTP8150MaximizedForWindows.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,5 +160,10 @@ public Guid GetDiskGuid()
{
return new Guid("efa6243a-085f-e745-f2ce-54d39ef34351");
}

public ulong GetCustomSplittingAndroidDesiredSpace()
{
return 4_294_967_296;
}
}
}
5 changes: 5 additions & 0 deletions FirmwareGen/DeviceProfiles/ZetaHalfSplit128GB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,10 @@ public Guid GetDiskGuid()
{
return new Guid("efa6243a-085f-e745-f2ce-54d39ef34351");
}

public ulong GetCustomSplittingAndroidDesiredSpace()
{
return 4_294_967_296;
}
}
}
5 changes: 5 additions & 0 deletions FirmwareGen/DeviceProfiles/ZetaHalfSplit256GB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,10 @@ public Guid GetDiskGuid()
{
return new Guid("efa6243a-085f-e745-f2ce-54d39ef34351");
}

public ulong GetCustomSplittingAndroidDesiredSpace()
{
return 4_294_967_296;
}
}
}
5 changes: 5 additions & 0 deletions FirmwareGen/DeviceProfiles/ZetaHalfSplit512GB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,10 @@ public Guid GetDiskGuid()
{
return new Guid("efa6243a-085f-e745-f2ce-54d39ef34351");
}

public ulong GetCustomSplittingAndroidDesiredSpace()
{
return 4_294_967_296;
}
}
}
5 changes: 5 additions & 0 deletions FirmwareGen/DeviceProfiles/ZetaMaximizedForWindows.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,10 @@ public Guid GetDiskGuid()
{
return new Guid("efa6243a-085f-e745-f2ce-54d39ef34351");
}

public ulong GetCustomSplittingAndroidDesiredSpace()
{
return 4_294_967_296;
}
}
}
1 change: 1 addition & 0 deletions FirmwareGen/IDeviceProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public interface IDeviceProfile
uint GetDiskSectorSize();
GPTPartition[] GetPartitionLayout();
SplittingStrategy GetSplittingStrategy();
ulong GetCustomSplittingAndroidDesiredSpace();
Guid GetDiskGuid();
}
}

0 comments on commit 201e196

Please sign in to comment.