readme.txt 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Acme Systems Acqua A5
  2. Intro
  3. =====
  4. The Acqua A5 is a system on module based on the Microchip SAMA5D31 SoC:
  5. https://www.acmesystems.it/acqua
  6. The files here support configurations that build a microSD image for a
  7. minimal system that can be accessed through the serial console. You will
  8. need an USB-to-serial interface in order to access that console from
  9. your computer:
  10. https://www.acmesystems.it/DPI
  11. How to build the image
  12. ======================
  13. If you have an Acqua module with 256 MiB of RAM, type:
  14. $ make acmesystems_acqua_a5_256mb_defconfig
  15. If you have the 512 MiB version, type instead:
  16. $ make acmesystems_acqua_a5_512mb_defconfig
  17. You can optionally tweak the configuration and add packages by typing:
  18. $ make menuconfig
  19. Then, proceed with the build:
  20. $ make
  21. How to write the microSD card
  22. =============================
  23. The system image is the file "sdcard.img" in the "output/images"
  24. directory. Write it to the card by invoking:
  25. $ sudo dd if=output/images/sdcard.img of=/dev/sdX bs=1M
  26. where `sdX' is the block device representing the microSD card.