readme.txt
1Odroid XU-4 board with Samsung Exynos 5422 SoC
2
3How to build it
4===============
5
6 $ make odroidxu4_defconfig
7
8Then you can edit the build options using
9
10 $ make menuconfig
11
12Compile all and build rootfs image:
13
14 $ make
15
16Note: you will need to have access to the network, since Buildroot will
17download the packages' sources.
18
19Result of the build
20-------------------
21
22After building, you should obtain all output files in output/images/
23
24
25How to write the SD card or eMMC
26================================
27
28Once the build process is finished you will have an image called "sdcard.img"
29in the output/images/ directory.
30
31Copy the bootable "sdcard.img" onto an SD card or eMMC with "dd":
32
33 $ sudo dd if=output/images/sdcard.img of=/dev/sdX
34
35Insert the SDcard into your ODROID-XU4, and power it up. Your new system
36should come up now.
37
38