Update Xtesting to 0.98
[functest.git] / PI.md
1 # Run Functest containers on Raspberry PI
2
3 All Functest containers (Hunter and newer) are cross-compiled for arm and arm64
4 via [travis-ci](https://travis-ci.org/collivier/functest/branches).
5 They are built on top of Alpine armhf to support most of Raspberry PI models.
6
7 All Docker manifests are published to run these containers via the same
8 commands whatever the architecture.
9
10 ## Copy the image to the SD card
11
12 > https://www.raspberrypi.org/documentation/installation/installing-images/linux.md
13 >
14 > This is very important, as you will lose all the data on the hard drive if you provide the wrong device name.
15 > Make sure the device name is the name of the whole SD card as described above, not just a partition. For example: sdd, not sdds1 or sddp1; mmcblk0, not mmcblk0p1.
16
17
18 ## Install Docker
19
20 ```shell
21 wget https://downloads.raspberrypi.org/raspbian/images/raspbian-2018-11-15/2018-11-13-raspbian-stretch.zip
22 unzip 2018-11-13-raspbian-stretch.zip
23 sudo dd bs=4M if=2018-11-13-raspbian-stretch.img of=/dev/mmcblk0 conv=fsync
24 ```
25
26 ## Install Docker
27
28 ```shell
29 curl -sSL https://get.docker.com | sudo sh
30 ```
31
32 ## That's all folks