readme.txt 1.2 KB

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