Skip to content

Commit 9764c96

Browse files
committed
Add 32-bit linux tools
1 parent 545ffde commit 9764c96

File tree

2 files changed

+30
-16
lines changed

2 files changed

+30
-16
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This project brings support for ESP8266 chip to the Arduino environment. ESP8266
77

88
### Installing with Boards Manager ###
99

10-
Starting with 1.6.4, Arduino allows installation of third-party platform packages using Boards Manager. We have packages available for Windows, Mac OS, and Linux x64.
10+
Starting with 1.6.4, Arduino allows installation of third-party platform packages using Boards Manager. We have packages available for Windows, Mac OS, and Linux (32 and 64 bit).
1111

1212
- Install Arduino 1.6.4 from the [Arduino website](http://www.arduino.cc/en/main/software).
1313
- Start Arduino and open Perferences window.

build/build_board_manager_package.sh

+29-15
Original file line numberDiff line numberDiff line change
@@ -64,25 +64,32 @@ cat << EOF > package_esp8266com_index.json
6464
"version":"0.4.4",
6565
"systems": [
6666
{
67-
"host":"i686-mingw32",
68-
"url":"https://github.com/igrr/esptool-ck/releases/download/0.4.4/esptool-0.4.4-win32.zip",
69-
"archiveFileName":"esptool-0.4.4-win32.zip",
70-
"checksum":"SHA-256:bc52165c847b194d8f079add982eae1c4b4466784bff8c8494241de602a003b3",
71-
"size":"17262"
67+
"host":"i686-mingw32",
68+
"url":"https://github.com/igrr/esptool-ck/releases/download/0.4.4/esptool-0.4.4-win32.zip",
69+
"archiveFileName":"esptool-0.4.4-win32.zip",
70+
"checksum":"SHA-256:bc52165c847b194d8f079add982eae1c4b4466784bff8c8494241de602a003b3",
71+
"size":"17262"
7272
},
7373
{
74-
"host":"x86_64-apple-darwin",
75-
"url":"https://github.com/igrr/esptool-ck/releases/download/0.4.4/esptool-0.4.4-osx.tar.gz",
76-
"archiveFileName":"esptool-0.4.4-osx.tar.gz",
77-
"checksum":"SHA-256:bb2a58c3583f9dcb0d3e7611531a0f3a29c21a4a1c442987bb29d07408824dfe",
78-
"size":"12145"
74+
"host":"x86_64-apple-darwin",
75+
"url":"https://github.com/igrr/esptool-ck/releases/download/0.4.4/esptool-0.4.4-osx.tar.gz",
76+
"archiveFileName":"esptool-0.4.4-osx.tar.gz",
77+
"checksum":"SHA-256:bb2a58c3583f9dcb0d3e7611531a0f3a29c21a4a1c442987bb29d07408824dfe",
78+
"size":"12145"
7979
},
8080
{
81-
"host":"x86_64-pc-linux-gnu",
82-
"url":"https://github.com/igrr/esptool-ck/releases/download/0.4.4/esptool-0.4.4-linux64.tar.gz",
83-
"archiveFileName":"esptool-0.4.4-linux64.tar.gz",
84-
"checksum":"SHA-256:beedf89db0bdce0bf6034232d86edebcfed0966ff1501545aca9cfbba1f92593",
85-
"size":"12513"
81+
"host":"x86_64-pc-linux-gnu",
82+
"url":"https://github.com/igrr/esptool-ck/releases/download/0.4.4/esptool-0.4.4-linux64.tar.gz",
83+
"archiveFileName":"esptool-0.4.4-linux64.tar.gz",
84+
"checksum":"SHA-256:beedf89db0bdce0bf6034232d86edebcfed0966ff1501545aca9cfbba1f92593",
85+
"size":"12513"
86+
},
87+
{
88+
"host":"i686-pc-linux-gnu",
89+
"url":"https://github.com/igrr/esptool-ck/releases/download/0.4.4/esptool-0.4.4-linux32.tar.gz",
90+
"archiveFileName":"esptool-0.4.4-linux32.tar.gz",
91+
"checksum":"SHA-256:4aa81b97a470641771cf371e5d470ac92d3b177adbe8263c4aae66e607b67755",
92+
"size":"12044"
8693
}
8794
]
8895
},
@@ -110,6 +117,13 @@ cat << EOF > package_esp8266com_index.json
110117
"archiveFileName":"linux64-xtensa-lx106-elf-gb404fb9.tar.gz",
111118
"checksum":"SHA-256:46f057fbd8b320889a26167daf325038912096d09940b2a95489db92431473b7",
112119
"size":"30262903"
120+
},
121+
{
122+
"host":"i686-pc-linux-gnu",
123+
"url":"http://arduino.esp8266.com/linux32-xtensa-lx106-elf.tar.gz",
124+
"archiveFileName":"linux32-xtensa-lx106-elf.tar.gz",
125+
"checksum":"SHA-256:b24817819f0078fb05895a640e806e0aca9aa96b47b80d2390ac8e2d9ddc955a",
126+
"size":"32734156"
113127
}
114128
]
115129
} ]

0 commit comments

Comments
 (0)