From 328ff3a65ea251838597783bd2793b6d76bcd12c Mon Sep 17 00:00:00 2001 From: Alan Carvalho de Assis Date: Fri, 29 May 2026 15:19:35 -0300 Subject: [PATCH] nuttx/ci: Add libftdi1-dev to get FT2232H working on CI This commit is needed to get PR #18951 passing on CI test. I think this USB Device could be used in the future to do real hardware tests, including automated tests on our CI. Signed-off-by: Alan C. Assis --- tools/ci/docker/linux/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/ci/docker/linux/Dockerfile b/tools/ci/docker/linux/Dockerfile index f106b2fe171cb..841df07b3ea00 100644 --- a/tools/ci/docker/linux/Dockerfile +++ b/tools/ci/docker/linux/Dockerfile @@ -37,6 +37,7 @@ RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -y -q gawk \ git \ gperf \ + libftdi1-dev \ libncurses5-dev \ make \ ninja-build \