diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-02-17 23:41:42 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-02-17 23:44:29 +0100 |
commit | b94f61e9c120a881cf0177146a061c01c8e06b0b (patch) | |
tree | 7d1e622edfc7185e93ccc0e35e457409e7643d17 | |
parent | 625e25e3e116a1705ae0c431ae604cc86611096f (diff) |
Move Functest on Raspberry PI to md
https://wiki.opnfv.org/display/functest/Run+Functest+containers+on+Raspberry+PI
Change-Id: I7239d89237e7a06ff702ee140f8851e136eb6d87
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit a55aa012436df1c22a6f27ece2540067ef61b2f6)
-rw-r--r-- | PI.md | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -0,0 +1,32 @@ +# Run Functest containers on Raspberry PI + +All Functest containers (Hunter and newer) are cross-compiled for arm and arm64 +via [travis-ci](https://travis-ci.org/collivier/functest/branches). +They are built on top of Alpine armhf to support most of Raspberry PI models. + +All Docker manifests are published to run these containers via the same +commands whatever the architecture. + +## Copy the image to the SD card + +> https://www.raspberrypi.org/documentation/installation/installing-images/linux.md +> +> This is very important, as you will lose all the data on the hard drive if you provide the wrong device name. +> 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. + + +## Install Docker + +```bash +wget https://downloads.raspberrypi.org/raspbian/images/raspbian-2018-11-15/2018-11-13-raspbian-stretch.zip +unzip 2018-11-13-raspbian-stretch.zip +sudo dd bs=4M if=2018-11-13-raspbian-stretch.img of=/dev/mmcblk0 conv=fsync +``` + +## Install Docker + +```bash +curl -sSL https://get.docker.com | sudo sh +``` + +## That's all folks |