3673b0c7e2
We have defconfigs for quite a few friendlyarm boards, but the naming for the defconfigs for those boards is inconsistent: some start with 'friendlyarm_' while others don't. Although the number of boards starting with 'friendlyarm_' is less than those which do not, we still choose to rename the boards so all have the 'friendlyarm_' prefix. Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Chakra Divi <chakra@openedev.com> Cc: Davide Viti <zinosat@gmail.com> Cc: Marek Belisko <marek.belisko@open-nandra.com> Cc: Suniel Mahesh <sunil@amarulasolutions.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
678 B
Plaintext
30 lines
678 B
Plaintext
NanoPi R1
|
|
|
|
Intro
|
|
=====
|
|
|
|
This default configuration will allow you to start experimenting with the
|
|
buildroot environment for the NanoPi R1. With the current configuration
|
|
it will bring-up the board, and allow access through the serial console.
|
|
|
|
How to build it
|
|
===============
|
|
|
|
Configure Buildroot:
|
|
|
|
$ make friendlyarm_nanopi_r1_defconfig
|
|
|
|
Compile everything and build the SD card image:
|
|
|
|
$ make
|
|
|
|
How to write the SD card
|
|
========================
|
|
|
|
Once the build process is finished you will have an image called "sdcard.img"
|
|
in the output/images/ directory.
|
|
|
|
Copy the bootable "sdcard.img" onto an SD card with "dd":
|
|
|
|
$ sudo dd if=output/images/sdcard.img of=/dev/sdX
|