As the time of writing, resinOS is available for Download at Version 2.0.6+rev3.dev for Raspberry Pi 3. This build, however, is nearly 2 weeks old and in the meantime, something great happend: Docker has finally updated to Version 17.03.1 - upgraded from the old ~10 (ten-ish) version - which was not that cool (and without Swarm ;)). So, it is a good idea to get to know how to build your own resinOS in case you really want to live on the bleeding edge ;).
Install Dependencies (Ubuntu 16.04 LTS)
sudo apt-get install gawk wget git-core diffstat unzip texinfo gcc-multilib \ build-essential chrpath socat cpio python python3 python3-pip python3-pexpect \ xz-utils debianutils iputils-ping libsdl1.2-dev xterm
goto /, because this build will create very long filenames
cd /
clone the repo, maybe some root power is needed here 😉
git clone https://github.com/resin-os/resin-raspberrypi cd resin-raspberrypi git submodule update --init --recursive
you would be done here and could build your own resinOS with the build command,
however, if you really want to pull the latest upgrades...
cd layers/meta-resin git checkout master git pull cd ../..
finally build resinOS for Raspberry Pi 3
./resin-yocto-scripts/build/barys -r --shared-downloads $(pwd)/shared-downloads/ --shared-sstate $(pwd)/shared-sstate/ -m raspberrypi3
after quite some time, you'll find the image in
build/tmp/deploy/images/raspberrypi3/resin-image-raspberrypi3.resinos-img
There is quite a lot of stuff you can change on your resinOS, so be sure to check out https://resinos.io/docs/custombuild/ for more documentation on that topic. Have fun :)!