1# Copyright (C) 2020 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4# Common properties for Zephyr filesystem compatibles 5 6include: base.yaml 7 8properties: 9 mount-point: 10 type: string 11 required: true 12 description: | 13 The absolute path used as the file system mount point. 14 15 partition: 16 type: phandle 17 required: true 18 description: | 19 A reference to the file system's partition. 20 21 automount: 22 type: boolean 23 description: | 24 Mount file system on boot if present. 25 26 During initialization the file system driver will attempt to mount 27 this partition. 28 29 read-only: 30 type: boolean 31 description: | 32 Mount file system read-only if present. 33 34 This adds the FS_MOUNT_FLAG_READ_ONLY option to be set in the 35 mount descriptor generated for the file system. 36 37 no-format: 38 type: boolean 39 description: | 40 Do not format file system if mount fails. 41 42 This causes the FS_MOUNT_FLAG_NO_FORMAT option to be set in the 43 mount descriptor generated for the file system. 44 45 disk-access: 46 type: boolean 47 description: | 48 Use disk-access for accessing storage media. 49 50 This causes the FS_MOUNT_FLAG_USE_DISK_ACCESS option to be set in 51 the mount descriptor generated for the file system. 52