summaryrefslogtreecommitdiffstats
path: root/lava-slave/Dockerfile
diff options
context:
space:
mode:
authorCorentin LABBE <clabbe@baylibre.com>2018-06-08 11:14:55 +0200
committerCorentin LABBE <clabbe@baylibre.com>2018-07-12 14:07:37 +0200
commit72fce7856928dbae032eee15a1cd5a8b8c9ce384 (patch)
tree0601538174edd4529c47dff5c23d6d1c0b601167 /lava-slave/Dockerfile
parent615e0d597510736dab68e41bd9dc002da6b2514f (diff)
Support screen for uart
This patch add support for using screen instead of conmux-console. screen can be used by adding "use_screen: True" to uart. screen is necessary for some board with internal uart which have a micro cut when switching power (like DRA7-EVM and M3ULCB)
Diffstat (limited to 'lava-slave/Dockerfile')
-rw-r--r--lava-slave/Dockerfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/lava-slave/Dockerfile b/lava-slave/Dockerfile
index 11ef6c8..a5b0148 100644
--- a/lava-slave/Dockerfile
+++ b/lava-slave/Dockerfile
@@ -81,6 +81,11 @@ COPY devices/ /root/devices/
COPY scripts/extra_actions /root/
RUN if [ -x /root/extra_actions ] ; then /root/extra_actions ; fi
+RUN apt-get -y install screen openssh-server
+RUN ssh-keygen -q -f /root/.ssh/id_rsa
+RUN cat /root/.ssh/id_rsa.pub > /root/.ssh/authorized_keys
+COPY lava-screen.conf /root/
+
EXPOSE 69/udp 80
CMD /start.sh