Skip to content

Commit

Permalink
Options: Added description (#2)
Browse files Browse the repository at this point in the history
* Options: Added description

* Options: edited windows-dvd and windows-index description
  • Loading branch information
Ivan Vorvanin authored May 28, 2024
1 parent 5910aa0 commit f9e02b1
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 f9e02b1

Please sign in to comment.