readme.txt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. Intro
  2. =====
  3. This default configuration will allow you to start experimenting with the
  4. buildroot environment for the Nanopi R2S. With the current configuration
  5. it will bring-up the board, and allow access through the serial console.
  6. Nanopi R2S link:
  7. https://www.friendlyarm.com/index.php?route=product/product&path=69&product_id=282
  8. This configuration uses ATF, U-Boot mainline and kernel mainline.
  9. How to build
  10. ============
  11. $ make friendlyarm_nanopi_r2s_defconfig
  12. $ make
  13. Note: you will need access to the internet to download the required
  14. sources.
  15. Files created in output directory
  16. =================================
  17. output/images
  18. ├── bl31.elf
  19. ├── boot.vfat
  20. ├── extlinux
  21. ├── idbloader.img
  22. ├── Image
  23. ├── rk3328-nanopi-r2s.dtb
  24. ├── rootfs.ext2
  25. ├── rootfs.ext4 -> rootfs.ext2
  26. ├── rootfs.tar
  27. ├── sdcard.img
  28. ├── u-boot.bin
  29. └── u-boot.itb
  30. How to write the SD card
  31. ========================
  32. Once the build process is finished you will have an image called "sdcard.img"
  33. in the output/images/ directory.
  34. Copy the bootable "sdcard.img" onto an SD card with "dd":
  35. $ sudo dd if=output/images/sdcard.img of=/dev/sdX
  36. $ sudo sync
  37. Insert the micro SDcard in your Nanopi R2S and power it up. The console
  38. is on the serial line, 1500000 8N1.
  39. Notes
  40. =====
  41. This configuration can also be used to drive the Friendlyarm Nanopi Neo3 board.