This is an automated email from the ASF dual-hosted git repository. jerzy pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-core.git
The following commit(s) were added to refs/heads/master by this push: new 0d000adfd fs/fs: Fix dependecy to mcu manager 0d000adfd is described below commit 0d000adfda4e068b71e65278bba4065077790fdf Author: Jerzy Kasenberg <jerzy.kasenb...@codecoup.pl> AuthorDate: Thu Jul 10 20:04:26 2025 +0200 fs/fs: Fix dependecy to mcu manager There was incorrect dependency to mcumgr file system management commands It was @apache-mynewt-mcumgr/cmd/fs/port/mynewt instead of @apache-mynewt-mcumgr/cmd/fs_mgmt/port/mynewt Signed-off-by: Jerzy Kasenberg <je...@apache.org> --- fs/fs/pkg.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/fs/pkg.yml b/fs/fs/pkg.yml index b2217498b..d08fd18de 100644 --- a/fs/fs/pkg.yml +++ b/fs/fs/pkg.yml @@ -18,7 +18,7 @@ # pkg.name: fs/fs -pkg.description: File system abstrction. +pkg.description: File system abstraction. pkg.author: "Apache Mynewt <d...@mynewt.apache.org>" pkg.homepage: "http://mynewt.apache.org/" pkg.keywords: @@ -33,4 +33,4 @@ pkg.deps.FS_CLI: - "@apache-mynewt-core/sys/shell" pkg.deps.FS_MGMT: - - "@apache-mynewt-mcumgr/cmd/fs/port/mynewt" + - "@apache-mynewt-mcumgr/cmd/fs_mgmt/port/mynewt"