Skip to content

Commit

Permalink
HACK for OEMB1 v1
Browse files Browse the repository at this point in the history
  • Loading branch information
gus33000 committed Jan 29, 2024
1 parent d0752eb commit 662c7eb
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 355 deletions.
5 changes: 1 addition & 4 deletions FirmwareGen/CommandLine/CLIOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ public static void ParseOptionsAndTakeAction(string[] args)
return;
}

_ = Parser.Default.ParseArguments<GenerateWindowsOptions, GenerateWindowsFFUOptions, GenerateOtherFFUOptions>(args)
.WithParsed<GenerateWindowsOptions>(MainLogic.GenerateWindowsBaseVHDX)
.WithParsed<GenerateWindowsFFUOptions>(MainLogic.GenerateWindowsFFU)
.WithParsed<GenerateOtherFFUOptions>(MainLogic.GenerateOtherFFU);
_ = Parser.Default.ParseArguments<GenerateWindowsFFUOptions>(args).WithParsed(MainLogic.GenerateWindowsFFU);
}
}
}
26 changes: 0 additions & 26 deletions FirmwareGen/CommandLine/GenerateOtherFFUOptions.cs

This file was deleted.

14 changes: 10 additions & 4 deletions FirmwareGen/CommandLine/GenerateWindowsFFUOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,20 @@ public string Output
get; set;
}

[Option('i', "input", HelpText = "Todo", Required = true)]
public string Input
[Option('v', "windows-ver", HelpText = "Todo", Required = true)]
public string WindowsVer
{
get; set;
}

[Option('v', "windows-ver", HelpText = "Todo", Required = true)]
public string WindowsVer
[Option('w', "windows-dvd", HelpText = "Todo", Required = true)]
public string WindowsDVD
{
get; set;
}

[Option('i', "windows-index", HelpText = "Todo", Required = true)]
public string WindowsIndex
{
get; set;
}
Expand Down
26 changes: 0 additions & 26 deletions FirmwareGen/CommandLine/GenerateWindowsOptions.cs

This file was deleted.

35 changes: 0 additions & 35 deletions FirmwareGen/DeviceProfiles/CitymanProfile.cs

This file was deleted.

39 changes: 0 additions & 39 deletions FirmwareGen/DeviceProfiles/HapaneroAAProfile.cs

This file was deleted.

35 changes: 0 additions & 35 deletions FirmwareGen/DeviceProfiles/HapaneroABProfile.cs

This file was deleted.

35 changes: 0 additions & 35 deletions FirmwareGen/DeviceProfiles/TalkmanProfile.cs

This file was deleted.

12 changes: 0 additions & 12 deletions FirmwareGen/IDeviceProfile.cs

This file was deleted.

Loading

0 comments on commit 662c7eb

Please sign in to comment.