• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..18-Apr-2025-

patches/linux/18-Apr-2025-

rootfs_overlay/etc/18-Apr-2025-

genimage.cfg A D18-Apr-2025435 3025

grub.cfg A D18-Apr-2025455 129

linux-3.14.config A D18-Apr-20257.6 KiB312311

post-build.sh A D18-Apr-202588 31

post-image.sh A D18-Apr-2025312 149

readme.txt A D18-Apr-20251.2 KiB5330

readme.txt

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