From ef0545d32b8a465c8059db9667f59eb019e25507 Mon Sep 17 00:00:00 2001 From: Chirag Shilwant <115738422+cshilwant@users.noreply.github.com> Date: Fri, 1 Mar 2024 16:06:46 +0530 Subject: [PATCH] ubuntu-distro: Update Dockerfile - Add usbutils package needed for setup scripts. Signed-off-by: Chirag Shilwant --- ubuntu-distro/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu-distro/Dockerfile b/ubuntu-distro/Dockerfile index 7dcec8a..d6352f8 100644 --- a/ubuntu-distro/Dockerfile +++ b/ubuntu-distro/Dockerfile @@ -3,7 +3,7 @@ FROM amd64/ubuntu:22.04 # Installing packages needed for Yocto & SDK Makefile builds RUN export DEBIAN_FRONTEND=noninteractive; apt-get update && \ - apt-get install -y --no-install-recommends file autoconf automake iproute2 \ + apt-get install -y --no-install-recommends file autoconf automake iproute2 usbutils \ bison flex libssl-dev bc u-boot-tools swig wget device-tree-compiler python3 python3-pip python3-dev dosfstools fdisk sudo && \ pip3 install jsonschema pyelftools PyYAML Mako && \