readme.txt 905 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Firefly RK3288
  2. How to build it
  3. ===============
  4. $ make firefly_rk3288_defconfig
  5. Then you can edit the build options using
  6. $ make menuconfig
  7. Compile all and build rootfs image:
  8. $ make
  9. Result of the build
  10. -------------------
  11. After building, you should get a tree like this:
  12. output/images/
  13. ├── rk3288-firefly.dtb
  14. ├── rootfs.ext2
  15. ├── rootfs.ext4 -> rootfs.ext2
  16. ├── sdcard.img
  17. ├── u-boot-dtb.img
  18. ├── u-boot-spl-dtb.bin
  19. ├── u-boot-spl-dtb.img
  20. └── uImage
  21. Prepare your SDCard
  22. ===================
  23. Buildroot generates a ready-to-use SD card image that you can flash directly to
  24. the card. The image will be in output/images/sdcard.img.
  25. You can write this image directly to an SD card device (i.e. /dev/xxx):
  26. $ dd if=output/images/sdcard.img of=/dev/xxx
  27. Finally, you can insert the SD card to the Firefly RK3288 board and boot it.