diff options
author | Keith Packard <keithp@keithp.com> | 2010-09-09 15:11:41 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-09-09 15:14:03 -0700 |
commit | b456bd9d7bcd9d968e43c38eeb6fa6ad8c58f895 (patch) | |
tree | bf79491e758e255111061ceeddd3e6e7b44a058c | |
parent | 16980b848651a6b20a0b458446f0a19fb517539d (diff) |
altosui: fix telemetrum.inf FFFE:000A product names on AMD64 and ia64
This appears to matter to Vista. Dunno why.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | ao-tools/altosui/altos-windows.nsi | 3 | ||||
-rwxr-xr-x | telemetrum.inf | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/ao-tools/altosui/altos-windows.nsi b/ao-tools/altosui/altos-windows.nsi index 6ebec214..37777fd6 100644 --- a/ao-tools/altosui/altos-windows.nsi +++ b/ao-tools/altosui/altos-windows.nsi @@ -40,6 +40,9 @@ Section "Install Driver" InstDriver SetOutPath $TEMP File "../../telemetrum.inf" InstDrv::InstallDriver /NOUNLOAD "$TEMP\telemetrum.inf" + + SetOutPath $INSTDIR + File "../../telemetrum.inf" SectionEnd Section "AltosUI Application" diff --git a/telemetrum.inf b/telemetrum.inf index 0a81084b..0d1a5534 100755 --- a/telemetrum.inf +++ b/telemetrum.inf @@ -6,7 +6,7 @@ Signature = "$Windows NT$" Class = Modem
ClassGUID ={4D36E96D-E325-11CE-BFC1-08002BE10318}
Provider = %Mfg%
-DriverVer = 08/05/2010,3.1.0.41
+DriverVer = 08/05/2010,7.1.0.0
[Manufacturer]
%Mfg% = Models, NTx86, NTamd64, NTia64
@@ -18,13 +18,13 @@ DriverVer = 08/05/2010,3.1.0.41 %TeleTerra% = TELEMETRUM, USB\VID_FFFE&PID_000D
[Models.NTamd64]
-%TeleMetrum% = TELEMETRUM, USB\VID_FFFE&PID_000A
+%AltusMetrum% = TELEMETRUM, USB\VID_FFFE&PID_000A
%TeleMetrum% = TELEMETRUM, USB\VID_FFFE&PID_000B
%TeleDongle% = TELEMETRUM, USB\VID_FFFE&PID_000C
%TeleTerra% = TELEMETRUM, USB\VID_FFFE&PID_000D
[Models.NTia64]
-%TeleMetrum% = TELEMETRUM, USB\VID_FFFE&PID_000A
+%AltusMetrum% = TELEMETRUM, USB\VID_FFFE&PID_000A
%TeleMetrum% = TELEMETRUM, USB\VID_FFFE&PID_000B
%TeleDongle% = TELEMETRUM, USB\VID_FFFE&PID_000C
%TeleTerra% = TELEMETRUM, USB\VID_FFFE&PID_000D
@@ -40,7 +40,7 @@ ExcludeFromSelect=USB\VID_FFFE&PID_000D [Strings]
Mfg = "altusmetrum.org"
-AltusMetrum = "Unknown AltusMetrum Device"
+AltusMetrum = "AltusMetrum"
TeleMetrum = "TeleMetrum"
TeleDongle = "TeleDongle"
TeleTerra = "TeleTerra"
|