readme.txt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. A10-OLinuXino-LIME
  2. Intro
  3. =====
  4. These are open hardware boards, all based on the Allwinner A10 SoC.
  5. for more details about the boards see the following pages:
  6. - https://www.olimex.com/Products/OLinuXino/open-source-hardware
  7. - https://www.olimex.com/Products/OLinuXino/A10/A10-OLinuXino-LIME/
  8. The following defconfigs are available:
  9. - olimex_a10_olinuxino_lime_defconfig
  10. for the A10-OLinuXino-LIME board using mainline kernel
  11. (see http://linux-sunxi.org/Linux_Kernel for more details)
  12. How to build it
  13. ===============
  14. Configure Buildroot:
  15. $ make <board>_defconfig
  16. Compile everything and build the rootfs image:
  17. $ make
  18. Result of the build
  19. -------------------
  20. After building, you should get a tree like this:
  21. output/images/
  22. +-- boot.scr
  23. +-- rootfs.ext2
  24. +-- rootfs.ext4 -> rootfs.ext2
  25. +-- sdcard.img
  26. +-- sun4i-a10-olinuxino-lime.dtb (lime, mainline)
  27. +-- u-boot.bin
  28. +-- u-boot-sunxi-with-spl.bin
  29. `-- zImage
  30. How to write the SD card
  31. ========================
  32. The sdcard.img file is a complete bootable image ready to be written
  33. on the boot medium. To install it, simply copy the image to a uSD
  34. card:
  35. # dd if=output/images/sdcard.img of=/dev/sdX
  36. Where 'sdX' is the device node of the uSD.
  37. Eject the SD card, insert it in the A10-OLinuXino board, and power it up.