readme.txt 1.1 KB

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