Page 1 of 1
which script is used to generate releases
Posted: Thu Oct 20, 2016 8:38 pm
by jrobeson
Which script is used to generate the firmware releases as listed here?
http://micropython.org/download ?
Re: which script is used to generate releases
Posted: Fri Oct 21, 2016 1:52 am
by shaoziyang
you can build it yourself, just install toolchain, then make.
Re: which script is used to generate releases
Posted: Fri Oct 21, 2016 9:09 am
by jrobeson
that's not the case, because it doesn't ship with modules from micropython-lib, and has a different setting for the webrepl.
Re: which script is used to generate releases
Posted: Fri Oct 21, 2016 2:04 pm
by platforma
micropython-lib can be cloned from it's separate repository:
https://github.com/micropython/micropython-lib/
You can add/remove the libraries as you please (also look a upip package manager). Webrepl is currently under the decision for being enabled/disabled by default. You can build selectively what you want from source, freeze certain modules in the firmware etc.
But @shaoziyang is right, you cal clone the repository, install esp-open-sdk and build the images yourself.
Re: which script is used to generate releases
Posted: Fri Oct 21, 2016 2:28 pm
by Damien
The stable esp8266 releases are built using the "esp-extra-scripts" branch in the main repo.
Re: which script is used to generate releases
Posted: Fri Oct 21, 2016 8:49 pm
by jrobeson
Damien wrote:The stable esp8266 releases are built using the "esp-extra-scripts" branch in the main repo.
Thanks Damien, that's exactly what I was looking for.