readme.txt 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. Intel Galileo Gen 1/2
  2. Intro
  3. ============
  4. These instructions apply to both the Intel Galileo Gen 1/2 development boards
  5. based on the Intel Quark X1000.
  6. How to build
  7. ============
  8. Apply the defconfig for the Intel Galileo Gen 1/2
  9. $ make galileo_defconfig
  10. Add any additional packages required and build.
  11. $ make
  12. The build process will create a SD card image and place it in output/images.
  13. $ ls -lh output/images/sdcard.img
  14. -rw-r--r--. 1 foo foo 11M Nov 17 16:19 output/images/sdcard.img
  15. Write the image to an mSD card, insert into the Galileo and power on.
  16. $ dd if=output/images/sdcard.img of=/dev/mmcblk0; sync
  17. Accessing the console
  18. =====================
  19. During power-on the console will become available on the Galileo's ttyS1. This
  20. may be accessed as follows.
  21. * Galileo Gen 1
  22. http://clayskits.com/products/galileo-gen-1-serial-cable
  23. A USB to RS-232 to 3.5mm Jack cable is required. Connect to the 3.5mm
  24. Jack next to the Ethernet Header.
  25. * Galileo Gen 2
  26. http://www.ftdichip.com/Products/Cables/USBTTLSerial.htm
  27. A FTDI TTL-232R-3V3 cable may be used to connect to the FTDI header
  28. next to the Ethernet connector on the Galileo Gen 2.
  29. The console should now be visible at 115200 baud.
  30. $ picocom -b 115200 /dev/ttyUSB0