This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit 57bdb4e6605f5c3cd3d4a5af872cfa42046034d8
Author: wangchengdong <[email protected]>
AuthorDate: Sun Feb 8 16:12:41 2026 +0800

    fs: disable fs automounter when no signals
    
     disable fs automounter when no signals, since fs automounter
     depends on signals
    
    Signed-off-by: Chengdong Wang <[email protected]>
---
 fs/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/Kconfig b/fs/Kconfig
index 4ac276b6b5d..ac9202e49a8 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -45,7 +45,7 @@ config FS_AUTOMOUNTER_DEBUG
 config FS_AUTOMOUNTER_DRIVER
        bool "Auto-mounter driver"
        default n
-       depends on FS_AUTOMOUNTER
+       depends on FS_AUTOMOUNTER && !DISABLE_ALL_SIGNALS
        ---help---
                Enabling this option will lead to registering of a character 
driver
                on FS_AUTOMOUNTER_VFS_PATH + mount point path for auto-mounter.

Reply via email to