Skip to content

Commit f9e02b1

Browse files
author
Ivan Vorvanin
authored
Options: Added description (#2)
* Options: Added description * Options: edited windows-dvd and windows-index description
1 parent 5910aa0 commit f9e02b1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

FirmwareGen/CommandLine/GenerateWindowsFFUOptions.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,31 @@ namespace FirmwareGen.CommandLine
55
[Verb("generate-windows-ffu", HelpText = "Generates a ffu from a Windows Base VHDX")]
66
public class GenerateWindowsFFUOptions
77
{
8-
[Option('d', "driver-pack", HelpText = "Todo", Required = true)]
8+
[Option('d', "driver-pack", HelpText = "Driver pack with device.xml", Required = true)]
99
public string DriverPack
1010
{
1111
get; set;
1212
}
1313

14-
[Option('o', "output", HelpText = "Todo", Required = true)]
14+
[Option('o', "output", HelpText = "Output folder", Required = true)]
1515
public string Output
1616
{
1717
get; set;
1818
}
1919

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

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

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

0 commit comments

Comments
 (0)