Skip to content

Commit

Permalink
Revert "Added 'arm' architecture support in Boards Manager"
Browse files Browse the repository at this point in the history
This reverts commit 6398cde.
  • Loading branch information
NicoHood committed Jan 26, 2016
1 parent 802c639 commit a167c90
Showing 1 changed file with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,7 @@ public boolean isCompatible(Platform platform) {
String host = getHost();

if (osName.contains("Linux")) {
if (osArch.equals("arm")) {
// Raspberry PI, BBB or other ARM based host

// PI: "arm-linux-gnueabihf"
// Arch-linux on PI2: "armv7l-unknown-linux-gnueabihf"
// Raspbian on PI2: "arm-linux-gnueabihf"
// Ubuntu Mate on PI2: "arm-linux-gnueabihf"
// Debian 7.9 on BBB: "arm-linux-gnueabihf"
// Raspbian on PI Zero: "arm-linux-gnueabihf"
return host.matches("arm.*-linux-gnueabihf");
} else if (osArch.contains("amd64")) {
if (osArch.contains("amd64")) {
return host.matches("x86_64-.*linux-gnu");
} else {
return host.matches("i[3456]86-.*linux-gnu");
Expand Down

0 comments on commit a167c90

Please sign in to comment.