Skip to content

Commit

Permalink
Update MainLogic.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
gus33000 committed Sep 22, 2024
1 parent 3dc11eb commit 5095cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FirmwareGen/MainLogic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public static void GenerateWindowsFFU(GenerateWindowsFFUOptions options)
VolumeUtils.DismountVirtualHardDisk(TmpVHD);

Logging.Log("Making FFU");
VolumeUtils.RunProgram(Img2Ffu, $@"-i {TmpVHD} -f ""{options.Output}\{deviceProfile.FFUFileName}"" -c {deviceProfile.DiskSectorSize * 4} -s {deviceProfile.DiskSectorSize} -p ""{string.Join(";", deviceProfile.PlatformIDs)}"" -o {options.WindowsVer} -b 4000");
VolumeUtils.RunProgram(Img2Ffu, $@"-i {TmpVHD} -f ""{options.Output}\{deviceProfile.FFUFileName}"" -c {deviceProfile.DiskSectorSize * 4} -s {deviceProfile.DiskSectorSize} -p ""{string.Join(";", deviceProfile.PlatformIDs)}"" -o {options.WindowsVer} -b 4000 -v V2 -d VenHw(860845C1-BE09-4355-8BC1-30D64FF8E63A) -l false -e .\provisioning-partitions.txt");

Logging.Log("Deleting Temp VHD");
File.Delete(TmpVHD);
Expand Down

0 comments on commit 5095cab

Please sign in to comment.