Skip to content

Commit

Permalink
Firefly: Configure Inf2Cat to use local time with Inf2CatUseLocalTime
Browse files Browse the repository at this point in the history
Done to fix the following error when building between midnight and 2AM on a computer configured in the GMT+2 time-zone:
>22.9.7: DriverVer set to a date in the future (postdated DriverVer not allowed) in firefly\firefly.inf.

Problem description: https://learn.microsoft.com/en-us/windows-hardware/drivers/devtest/inf2cat#troubleshooting
The network\wlan\WDI\PLATFORM\NDIS6\SDIO\sdio.vcxproj sample is already with the same Inf2CatUseLocalTime parameter, so the pattern is not new to this repo.
  • Loading branch information
forderud committed Jul 15, 2023
1 parent d9acf79 commit 6bd6121
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions hid/firefly/driver/firefly.vcxproj
Expand Up @@ -86,15 +86,19 @@
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<TargetName>firefly</TargetName>
<Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<TargetName>firefly</TargetName>
<Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<TargetName>firefly</TargetName>
<Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<TargetName>firefly</TargetName>
<Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Link>
Expand Down

0 comments on commit 6bd6121

Please sign in to comment.