Skip to content

Commit a167c90

Browse files
committed
Revert "Added 'arm' architecture support in Boards Manager"
This reverts commit 6398cde.
1 parent 802c639 commit a167c90

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

Diff for: arduino-core/src/cc/arduino/contributions/packages/HostDependentDownloadableContribution.java

+1-11
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,7 @@ public boolean isCompatible(Platform platform) {
5050
String host = getHost();
5151

5252
if (osName.contains("Linux")) {
53-
if (osArch.equals("arm")) {
54-
// Raspberry PI, BBB or other ARM based host
55-
56-
// PI: "arm-linux-gnueabihf"
57-
// Arch-linux on PI2: "armv7l-unknown-linux-gnueabihf"
58-
// Raspbian on PI2: "arm-linux-gnueabihf"
59-
// Ubuntu Mate on PI2: "arm-linux-gnueabihf"
60-
// Debian 7.9 on BBB: "arm-linux-gnueabihf"
61-
// Raspbian on PI Zero: "arm-linux-gnueabihf"
62-
return host.matches("arm.*-linux-gnueabihf");
63-
} else if (osArch.contains("amd64")) {
53+
if (osArch.contains("amd64")) {
6454
return host.matches("x86_64-.*linux-gnu");
6555
} else {
6656
return host.matches("i[3456]86-.*linux-gnu");

0 commit comments

Comments
 (0)