1# Copyright (c) 2025 Antmicro <www.antmicro.com> 2# SPDX-License-Identifier: Apache-2.0 3 4config FUSE_CLIENT 5 bool "FUSE client-side primitives support" 6 help 7 Enable FUSE client-side primitives support. 8 9config FUSE_CLIENT_UID_VALUE 10 int "FUSE user ID" 11 default 0 12 help 13 Each FUSE request contains user ID, this config allows setting 14 that value. The result is as if user with given UID accessed the file/resource. 15 16config FUSE_CLIENT_GID_VALUE 17 int "FUSE group ID" 18 default 0 19 help 20 Each FUSE request contains group ID, this config allows setting 21 that value. The result is as if user with given GID accessed the file/resource. 22 23config FUSE_CLIENT_PID_VALUE 24 int "FUSE process ID" 25 default 0 26 help 27 Each FUSE request contains process ID, this config allows setting 28 that value. The result is as if process with given PID accessed the file/resource. 29 30module = FUSE_CLIENT 31module-str = fuse 32source "subsys/logging/Kconfig.template.log_config" 33