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 authored and Fredrik Orderud committed Sep 25, 2023
1 parent ea6fd60 commit 056857f
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 056857f

Please sign in to comment.