readme.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. A33-OLinuXino
  2. Intro
  3. =====
  4. This board is based on Allwinner A33 SoC.
  5. Home Page: https://www.olimex.com/Products/OLinuXino/A33/A33-OLinuXino/open-source-hardware
  6. Wiki: https://wiki.amarulasolutions.com/bsp/sunxi/a33/Olimex-A33-Olinuxino.html
  7. How to build it
  8. ===============
  9. Configure Buildroot:
  10. $ make olimex_a33_olinuxino_defconfig
  11. Build everything by running:
  12. $ make
  13. Result of the build
  14. -------------------
  15. After building, you should get a tree like this:
  16. output/images/
  17. ├── boot.scr
  18. ├── rootfs.ext2
  19. ├── rootfs.ext4 -> rootfs.ext2
  20. ├── rootfs.tar
  21. ├── sdcard.img
  22. ├── sun8i-a33-olinuxino.dtb
  23. ├── u-boot.bin
  24. ├── u-boot-sunxi-with-spl.bin
  25. └── zImage
  26. How to write the SD card
  27. ========================
  28. The sdcard.img file is a complete bootable image ready to be written
  29. on the boot medium. To install it, simply copy the image to a uSD
  30. card:
  31. # dd if=output/images/sdcard.img of=/dev/sdX
  32. Where 'sdX' is the device node of the uSD.
  33. Eject the SD card, insert it in the A33-OLinuXino board, and power it up.