From e78100cf09b7188ed04aeb295e6a5fa3ff38166a Mon Sep 17 00:00:00 2001 From: Luke Hutton Date: Thu, 9 Mar 2023 13:59:35 +0000 Subject: [PATCH] [ETHOSN] Add ssh to the driver stack installation Some use cases of the NPU integration rely on ssh being avilable within the docker image in order to launch an RPC server on a remote device. This commit adds ssh as a dependency on the NPU driver stack installation. Change-Id: I6830a1536789ebbab161080010c94e7a097e36ce --- docker/install/ubuntu_install_ethosn_driver_stack.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/install/ubuntu_install_ethosn_driver_stack.sh b/docker/install/ubuntu_install_ethosn_driver_stack.sh index 7be815df32b9..7ac2e8405e2a 100755 --- a/docker/install/ubuntu_install_ethosn_driver_stack.sh +++ b/docker/install/ubuntu_install_ethosn_driver_stack.sh @@ -47,7 +47,8 @@ apt-install-and-clear -y \ python-dev \ python3 \ scons \ - wget + wget \ + openssh-client cd "$tmpdir" git clone --branch "$repo_revision" "$repo_url" "$repo_dir"