1A13-OLinuXino 2 3Intro 4===== 5 6This default configuration will allow you to start experimenting with 7the buildroot environment for the A13-OLinuXino. With the current 8configuration it will bring-up the board, and allow access through the 9serial console. 10 11For more details about the A13-OLinuXino: 12 13https://www.olimex.com/Products/OLinuXino/A13/A13-OLinuXino/open-source-hardware 14 15How to build it 16=============== 17 18Configure Buildroot: 19 20 $ make olimex_a13_olinuxino_defconfig 21 22Compile everything and build the rootfs image: 23 24 $ make 25 26Note: you will need access to the internet to download the required 27sources. 28 29How to write the SD card 30======================== 31 32The sdcard.img file is a complete bootable image ready to be written 33on the boot medium. To install it, simply copy the image to a micro SD 34card: 35 36 # dd if=output/images/sdcard.img of=/dev/sdX 37 38Notes: 39 - replace 'sdX' with the actual device with your micro SDcard, 40 - you may need to be root to do that (use 'sudo'). 41 42Eject the SD card, insert it in the A13-OLinuXino board, and power it 43up. 44