Igglybuff/flash is one of the open-source repositories TopGit tracks, currently at 6 stars. Command line script to flash SD card images of any kind
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
Command line script to flash SD card images of any kind.
Note that for some devices (e.g. Raspberry Pi), at the end of the flashing process the tool tries to customize the SD card e.g. it configures a hostname or WiFi. And with a cloud-init enabled image you can do much more like adding users, SSH keys etc.
The typical workflow looks like this:
Run flash https://github.com/hypriot/image-builder-rpi/releases/download/v1.12.0/hypriotos-rpi-v1.12.0.img.zip
Insert SD card to your notebook
Press RETURN
Eject SD card and insert it to your Raspberry Pi - done!
This script can
download a compressed SD card from the internet or from S3
use a local SD card image, either compressed or uncompressed
wait until a SD card is plugged in
search for a SD card plugged into your Computer
show progress bar while flashing (if pv is installed)
copy an optional cloud-init user-data and meta-data file into the boot partition of the SD image
copy an optional config.txt file into the boot partition of the SD image (eg. to enable onboard WiFi)
copy an optional device-init.yaml or occidentalis.txt file into the boot partition of the SD image (for older HypriotOS versions)
copy an optional custom file into the boot partition of the SD image
optional set the hostname of this SD image
optional set the WiFi settings as well
play a little sound after flashing
unplugs the SD card
At the moment only Mac OS X and Linux is supported.
Installation
Download the appropriate version for Linux or Mac with this command
$ flash --help
usage: flash [options] [name-of-rpi.img]
Flash a local or remote Raspberry Pi SD card image.
OPTIONS:
--help|-h Show this message
--bootconf|-C Copy this config file to /boot/config.txt
--config|-c Copy this config file to /boot/device-init.yaml (or occidentalis.txt)
--hostname|-n Set hostname for this SD image
--ssid|-s Set WiFi SSID for this SD image
--password|-p Set WiFI password for this SD image
--clusterlab|-l Start Cluster-Lab on boot: true or false
--device|-d Card device to flash to (e.g. /dev/disk2)
--force|-f Force flash without security prompt (for automation)
--userdata|-u Copy this cloud-init config file to /boot/user-data
--metadata|-m Copy this cloud-init config file to /boot/meta-data
--file|-F Copy this custom file to /boot
Configuration
The strength of the flash tool is that it can insert some configuration files that gives you the best first boot experience to customize the hostname, WiFi and even user logins and SSH keys automatically.
cloud-init
With HypriotOS v1.7.0 and higher the options --userdata and --metadata can be used to copy both cloud-init config files into the FAT partition.
This is an example how to create our default user with a password.
Please have a look at the sample folder, our guest blogpost Bootstrapping a Cloud with Cloud-Init and HypriotOS or at the cloud-init documentation
how to do more things like using SSH keys, running additional commands etc.
config.txt
The option --bootconf can be used to copy a config.txt into the SD image
before it is unplugged.
With this option it is possible to change some memory, camera, video settings
etc. See the config.txt documentation
at raspberrypi.org for more details.
The boot config file config.txt has name/value pairs such as:
max_usb_current=1
hdmi_force_hotplug=1
device-init.yaml
For HypriotOS older than v1.7.0 the option --config can be used to copy a
device-init.yaml into the SD image before it is unplugged. This YAML file can
be read by newer HyperiotOS SD images.
If you don't want to set any wifi settings, comment out or remove the wlan0, ssid and password.
fake-hwclock.data
HypriotOS 1.12.0 and higher has the /etc/fake-hwclock.data file symlinked to the boot partition. Flash tool updates this timestamp with the current time (UTC timezone). This fixes problems running commands that communicate with the internet with a wrong initial date on first boot.
This works only for SD card images that already have occi installed.
flash --hostname mypi hypriot.img
Then unplug the SD card from your computer, plug it into your Pi and boot your
Pi. After a while the Pi can be found via Bonjour/avahi and you can log in with
The options --userdata and --bootconf must be used to disable UART and enable onboard WiFi for Raspberry Pi 3 and Pi 0. For external WiFi sticks you do not need to specify the -bootconf option.
Pull requests and other feedback is always welcome. The flash tool should fit
our all needs and environments.
To develop the flash scripts you need either a Linux or macOS machine to test locally. On a Mac you can use Docker to run the Linux tests in a container and if you dare you can run the macOS tests directly. On a Linux machine you can not test the macOS variant directly. But in every case you can send a pull request and push code to GitHub and the CI pipeline with CircleCI (Linux) and TravisCI (macOS) will test your code for both platforms.
Local development
The flash script are checked with the shellcheck static analysis tool.
The integration tests can be run locally on macOS or Linux. We use BATS which is installed with NPM package. So you would need Node.js to setup a local development environment. As the flash script runs dd and some commands with sudo it is recommended to use the isolated test environment with Docker or run this local tests in a macOS / Linux VM.
npm install
npm test
Isolated tests with Docker
If you do not want to install all these development tools (shellcheck, bats, node) and don't trust the flash script enough, you can use Docker instead and run the shellcheck and integration tests in a much safer test environment.
All you need is Docker and make installed to run the following tests.
Shellcheck
The flash script are checked with the shellcheck static analysis tool.
make shellcheck
Integration tests
The flash script also have BATS integration tests. You don't have to install everything on your development machine. It should be enough to test the Linux variant in a Docker container and then run the macOS tests with TravisCI.
make test
Test Linux from Mac
For manual tests of the Linux version on a Mac there is a Vagrant environment. It can be used
to investigate Linux problems when you don't have a baremetal Linux machine. With some help I found a way to spin up a
VirtualBox Vagrant box with Ubuntu that maps the internal Apple SD card reader
into the VM. Thanks to Flexshot for the helper
functions I found in NextThingCo/CHIP-SDK#15.
Check the vendor ID and product ID in "About this Mac" -> System Report ... ->
Card Reader. I found the vendor ID 0x05ac and product ID 0x8406 can be found in
the Vagrantfile.
vagrant up --provider virtualbox
vagrant ssh
cd /vagrant
./flash hypriotos-rpi-v1.12.0.img.zip
Buy us a beer!
This FLOSS software is funded by donations only. Please support us to maintain and further improve it!
Yes — Igglybuff/flash ships under the MIT license, which makes its source code freely readable (and, depending on license terms, forkable and reusable). Source: github.com/Igglybuff/flash.
What is Igglybuff/flash?
Igglybuff/flash (Igglybuff/flash) is a multi-language project on GitHub. From the project's own README: Command line script to flash SD card images of any kind
Where do I read more about Igglybuff/flash?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/Igglybuff/flash is the definitive source.
Read full README in the tab above.
Want a second opinion on flash?
Ask an AI that can read this page — one click and you get its take on flash.