iptables: bump to version 1.6.1
[buildroot-gz.git] / board / hardkernel / odroidc2 / readme.txt
blobb44aa67f5ac06948ddb00458ae0a403562fa21a0
1 ODROID-C2
3 Intro
4 =====
5 To be able to use ODROID-C2 board with the images generated by
6 Buildroot, you have to prepare the SDCard or eMMC.
8 How to build it
9 ===============
11   $ make odroidc2_defconfig
13 Then you can edit the build options using
15   $ make menuconfig
17 Compile all and build rootfs image:
19   $ make
21 Note: you will need to have access to the network, since Buildroot will
22 download the packages' sources.
24 Result of the build
25 -------------------
27 After building, you should obtain this tree:
29     output/images/
30     +-- Image
31     +-- boot.ini                   [1]
32     +-- boot.vfat
33     +-- meson64_odroidc2.dtb
34     +-- rootfs.ext2
35     +-- rootfs.ext4
36     +-- rootfs.tar
37     +-- sdcard.img
38     `-- u-boot.bin
40 [1] This is the ODROID-C2 configuration file used in u-boot.
42 How to write the SD card or eMMC
43 ================================
45 Once the build process is finished you will have an image called "sdcard.img"
46 in the output/images/ directory.
48 Copy the bootable "sdcard.img" onto an SD card or eMMC with "dd":
50   $ sudo dd if=output/images/sdcard.img of=/dev/sdX
52 Insert the SDcard into your ODROID-C2, and power it up. Your new system
53 should come up now.