The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / board / ts / ts5x00 / readme.txt
1 Technologic Systems TS-5x00 SBCs
2 ================================
3
4 This document explains how to set up a basic Buildroot system for the
5 Technologic Systems TS-5x00 serie of x86-based Single Board Computers.
6
7 TS-5x00 Single Board Computers are based on the AMD Elan520 processor. For more
8 information please have a look at http://wiki.embeddedarm.com/wiki/#AMD
9
10 The kernel configuration works for any AMD Elan520-based SBCs, but the support
11 is enhanced for the TS-5500 and TS-5400 models (on-board devices registration
12 and additional sysfs attributes under /sys/devices/platform/).
13
14 To build the default configuration you only have to:
15
16     $ make ts5x00_defconfig
17     $ make
18
19 You will need a Compact Flash card of sufficient size and the first or only
20 partition configured as Linux type, with the bootable flag.
21
22 You can transfer the system on the partition then optionally resize it with:
23
24     # dd if=output/images/rootfs.ext4 of=/dev/sdX1
25     # resize2fs /dev/sdX1
26
27 Or you can just extract the root filesystem to the partition with:
28
29     # mount /dev/sdX1 /mnt
30     # tar -pxf output/images/rootfs.tar -C /mnt
31     # umount /mnt
32
33 To install the bootloader, you will need to copy the MBR:
34
35     # cat output/images/syslinux/mbr.bin > /dev/sdX
36
37 Then install SYSLINUX in the mounted partition:
38
39     # mount /dev/sdX1 /mnt
40     # output/host/sbin/extlinux --install /mnt/boot/syslinux
41     # umount /mnt
42
43 IMPORTANT: In order for the board to boot the Compact Flash with a recent
44 config, the BIOS must use Logical Block Addressing (LBA). You can do it by
45 choosing "Ide 0: AUTOCONFIG, LBA" under "IDE DRIVE GEOMETRY" in the "Basic CMOS
46 Configuration" screen. Also, don't forget to set the 'active' (or 'bootable')
47 flag on partition 1. For details about the CMOS setup, please see:
48 http://wiki.embeddedarm.com/wiki/TS-5500#System_BIOS_Setup_Screens
49
50 Connect a terminal program to the rs232 connector marked "COM2"
51 with baudrate set to 115200, insert the Compact Flash card into the socket,
52 power up the board, and enjoy.