Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gus33000 committed Jun 12, 2024
2 parents 9ffa174 + f9e02b1 commit 3dc11eb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions FirmwareGen/CommandLine/GenerateWindowsFFUOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,31 @@ namespace FirmwareGen.CommandLine
[Verb("generate-windows-ffu", HelpText = "Generates a ffu from a Windows Base VHDX")]
public class GenerateWindowsFFUOptions
{
[Option('d', "driver-pack", HelpText = "Todo", Required = true)]
[Option('d', "driver-pack", HelpText = "Driver pack with device.xml", Required = true)]
public string DriverPack
{
get; set;
}

[Option('o', "output", HelpText = "Todo", Required = true)]
[Option('o', "output", HelpText = "Output folder", Required = true)]
public string Output
{
get; set;
}

[Option('v', "windows-ver", HelpText = "Todo", Required = true)]
[Option('v', "windows-ver", HelpText = "Version of Windows e.g. 10.0.26063.1", Required = true)]
public string WindowsVer
{
get; set;
}

[Option('w', "windows-dvd", HelpText = "Todo", Required = true)]
[Option('w', "windows-dvd", HelpText = "Windows Setup Media DVD drive letter e.g. F:", Required = true)]
public string WindowsDVD
{
get; set;
}

[Option('i', "windows-index", HelpText = "Todo", Required = true)]
[Option('i', "windows-index", HelpText = "The index of the Windows Setup Media DVD Install Image, to apply. e.g. 1", Required = true)]
public string WindowsIndex
{
get; set;
Expand Down

0 comments on commit 3dc11eb

Please sign in to comment.