Written for CMPT433 in Summer 2018 at SFU
By: Oscar
This guide is intended to be viewed by GitHub's Markdown parser. It is available in our final project repo here.
Similar to the official guides, this guide will use the following convention for where you should run commands:
$
are for the host. Example: $ echo "This is on the host!"
#
are for the target. Example: # echo "This is on the target!"
=>
are for use in uboot. Example: => echo "This is in uboot!"
This process is powered at its core by a project on github. You can check out the repo here.
This project is a fork of a Google Summer of Code project from 2013. The original repo is here. Since it was made, there have been some changes in aspects of the BeagleBone setup so a number of modifications were required to ensure it worked.
$ mkdir beaglebone_usb_flasher
$ git clone https://github.com/Jerald/beaglebone_usb_flash.git ./beaglebone_usb_flasher
This will make a new folder for the repo then clone it into there from github.$ cd beaglebone_usb_flasher
Now you need to compile an executable called usb_flasher
which is used to boot your BeagleBone and expose it to your host. This requires two dependencies, automake
and libusb-dev
. If you're on a distro other than ubuntu, use your favourite package manager to get them. Otherwise, if you are on ubuntu run the following command:$ sudo apt install automake libusb-1.0-0-dev
$ ./autogen.sh
$ ./configure
$ make
Now the flashing system is all ready to begin! Next step: actually having something to flash.Now that everything is setup within the repo, you need to actually download an image to flash onto the BeagleBone. If you'd like, you can view the latest images here on the BeagleBone website and pick your own. If not, there are steps to download a preset one below.
bin/
directory within the repo. This is where the executable was compiled to and where the script we'll be using is located. Assuming you're within the repo to start with, change it with:$ cd ./bin
For ease, you can use the below commands which download the latest image as of the release of this guide. I may update this link every once in awhile with the newest image.
Download the image with:
$ wget -O ./image.img.xz http://debian.beagleboard.org/images/bone-debian-9.4-iot-armhf-2018-06-17-4gb.img.xz
If you chose a different image to use off of the website, you can change the url in the command or just download it normally and change the path when you run the flashing script.
At this point we have the flashing system ready and an image to flash downloaded. Now all that's left is to actually do it!
For your BeagleBone to be flashed it needs to be put into USB boot mode. This is achieved by holding whats called the S2 button while plugging in the board. That's the small button on the opposite side of the board from the ethernet port. It's next to the weird beige connecters if you have a BeagleBone Green.
Be sure you put the board into USB boot mode. You'll know you did it right if the single power light next to the ethernet is on, but the row of 4 isn't flashing at all.
Now that you've put the BeagleBone into USB boot mode, we're ready to use the flashing system. Staying within the bin/
folder, you need to run the following command:
$ sudo ./flash_script.sh ./image.img.xz
If you downloaded your image to somewhere else, change the path to it. The name can be whatever it wants, but the extension should be .img.xz
.
The script will guide you through the remaining steps. If you have any issues, check the troubleshooting section.
If your board didn't show up as mounted when the script asks, abort the script and try again from the beginning. If it still doesn't show up, go through the entire process regardless. After it's done try to boot. If it still doesn't work, try flashing again.
General rule if things don't mount correctly or otherwise boot: flash it again.
To have the flashing system connect correctly, you'll need to add rules to pass 2 USB devices to your VM. How you do that differs based on your VM program and it's up to you to find the specific method.
Firstly, when the BeagleBone is in USB boot mode you'll see a device with "AM335x" in the same as well as "TI" or "Texas Instruments". This device is what's exposed to your computer by the board being in USB boot mode. Pass it through to your VM.
After that's added, run the script and start the process of putting it in flashing mode. This is what happens after the script asks if the board is in USB boot mode. You'll then be able to see a new device with a name containing "RNDIS" and "Ethernet gadget". Now pass it to your VM as well.
Once these have been passed, your board can be put into the flashing state. At this point another new USB device will be added to your computer. It may be passed to the VM via a previous rule or it may not be. If it's not, look for a device that wasn't there beftiore, as the name is dependent on your computer. This last device is the actual filesystem of your BeagleBone exposed to the computer.
Once this has been added, restart the entire process and everything should work correctly.