From b022aed6940d16138d7ac61da80d05d2157bae22 Mon Sep 17 00:00:00 2001 From: Alberto Escolar Piedras Date: Wed, 1 Oct 2025 11:36:59 +0200 Subject: [PATCH] base: Add libfuse3 fuse v3 has been out there for a few years, and many other components have been progressively switching to it, while some distros have been taking an active effort to ensure they do not use the old fuse(2) anymore and intend to deprecate it and remove it in favour of fuse3. The native_sim fuse driver now can use fuse3 also, so let's install libfuse3-dev in our docker image to do a calm and progressive transition to it. i.e.: 1. Zephyr supports fuse3, but defaults to using v2 so we are compatible with the old image 2. The docker image starts including v3 3. Zephyr defaults to use v3 4. The docker image does not need to have v2 anymore so we remove it 1. is done 2. we'd want to do as soon as possible to enable other steps and forwards compatibility of the image 4. could then be done at any point in which we believe backwards compatibility with older Zephyr versions is not an issue anymore (or the distro forces us because it dropped the package). Signed-off-by: Alberto Escolar Piedras --- Dockerfile.base | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile.base b/Dockerfile.base index a14d74f..546b4f5 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -101,6 +101,7 @@ RUN <