1OrangePi Zero 2 3Intro 4===== 5 6This default configuration will allow you to start experimenting with the 7buildroot environment for the OrangePi Zero. With the current configuration 8it will bring-up the board, and allow access through the serial console. 9 10How to build it 11=============== 12 13Configure Buildroot: 14 15 $ make orangepi_zero_defconfig 16 17Compile everything and build the SD card image: 18 19 $ make 20 21How to write the SD card 22======================== 23 24Once the build process is finished you will have an image called "sdcard.img" 25in the output/images/ directory. 26 27Copy the bootable "sdcard.img" onto an SD card with "dd": 28 29 $ sudo dd if=output/images/sdcard.img of=/dev/sdX 30