readme.txt 832 B

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