Skip to content

Commit c553cfd

Browse files
committed
Merge remote-tracking branch 'upstream/master'
* upstream/master: Compile with -x assembler-with-cpp instead of -assembler-with-cpp. Signed drivers for Windows 8.1 Updated revisions log Updated drivers signature for Windows
2 parents bbd7514 + a432e26 commit c553cfd

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

app/src/processing/app/debug/Compiler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ static private List getCommandCompilerS(String avrBasePath, List includePaths,
547547
avrBasePath + "avr-gcc",
548548
"-c", // compile, don't link
549549
"-g", // include debugging info (so errors include line numbers)
550-
"-assembler-with-cpp",
550+
"-x","assembler-with-cpp",
551551
"-mmcu=" + boardPreferences.get("build.mcu"),
552552
"-DF_CPU=" + boardPreferences.get("build.f_cpu"),
553553
"-DARDUINO=" + Base.REVISION,

build/shared/revisions.txt

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
ARDUINO 1.0.5-r2 - 2014.01.08
3+
4+
* Signed drivers for Windows 8.1
5+
* Fixed Windows drivers signature (that prevented installation on
6+
some Windows 8.x OS). Now the signature is timestamped and should
7+
not expire.
8+
29
ARDUINO 1.0.5 - 2013.05.15
310

411
[core]
3.15 KB
Binary file not shown.

build/windows/dist/drivers/arduino.inf

+9-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ robotControl.bootloader.name="Arduino Robot Control bootloader"
2626
robotControl.sketch.name="Arduino Robot"
2727
robotMotor.bootloader.name="Arduino Robot Motor bootloader"
2828
robotMotor.sketch.name="Arduino Robot"
29+
yun.bootloader.name="Arduino Yun bootloader"
30+
yun.sketch.name="Arduino Yun"
2931

3032
[DefaultInstall]
3133
CopyINF=arduino.inf
@@ -37,7 +39,7 @@ Signature="$Windows NT$"
3739
Provider=%ManufacturerName%
3840
DriverPackageDisplayName=%DriverPackageDisplayName%
3941
CatalogFile=arduino.cat
40-
DriverVer=01/01/2013,1.0.0.0
42+
DriverVer=01/04/2013,1.0.0.0
4143

4244
[Manufacturer]
4345
%ManufacturerName%=DeviceList, NTamd64, NTia64
@@ -69,6 +71,8 @@ DefaultDestDir=12
6971
%robotControl.sketch.name%=DriverInstall, USB\VID_2341&PID_8038&MI_00
7072
%robotMotor.bootloader.name%=DriverInstall, USB\VID_2341&PID_0039
7173
%robotMotor.sketch.name%=DriverInstall, USB\VID_2341&PID_8039&MI_00
74+
%yun.bootloader.name%=DriverInstall, USB\VID_2341&PID_0041
75+
%yun.sketch.name%=DriverInstall, USB\VID_2341&PID_8041&MI_00
7276

7377
[DeviceList.NTamd64]
7478
%due.bossa.name%=DriverInstall, USB\VID_03EB&PID_6124
@@ -93,6 +97,8 @@ DefaultDestDir=12
9397
%robotControl.sketch.name%=DriverInstall, USB\VID_2341&PID_8038&MI_00
9498
%robotMotor.bootloader.name%=DriverInstall, USB\VID_2341&PID_0039
9599
%robotMotor.sketch.name%=DriverInstall, USB\VID_2341&PID_8039&MI_00
100+
%yun.bootloader.name%=DriverInstall, USB\VID_2341&PID_0041
101+
%yun.sketch.name%=DriverInstall, USB\VID_2341&PID_8041&MI_00
96102

97103
[DeviceList.NTia64]
98104
%esplora.bootloader.name%=DriverInstall, USB\VID_2341&PID_003C
@@ -114,6 +120,8 @@ DefaultDestDir=12
114120
%robotControl.sketch.name%=DriverInstall, USB\VID_2341&PID_8038&MI_00
115121
%robotMotor.bootloader.name%=DriverInstall, USB\VID_2341&PID_0039
116122
%robotMotor.sketch.name%=DriverInstall, USB\VID_2341&PID_8039&MI_00
123+
%yun.bootloader.name%=DriverInstall, USB\VID_2341&PID_0041
124+
%yun.sketch.name%=DriverInstall, USB\VID_2341&PID_8041&MI_00
117125

118126
[DriverInstall]
119127
include=mdmcpq.inf,usb.inf

0 commit comments

Comments
 (0)