1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
- * All rights reserved.
- *
- * This software is supplied "AS IS" without any warranties.
- * RDA assumes no responsibility or liability for the use of the software,
- * conveys no license or title under any patent, copyright, or mask work
- * right to the product. RDA reserves the right to make changes in the
- * software without notification. RDA also make no representation or
- * warranty that such application will be suitable for the specified use
- * without further testing or modification.
- */
- #ifndef _FS_CONFIG_H_
- #define _FS_CONFIG_H_
- // @AUTO_GENERATION_NOTICE@
- /**
- * whether flash block device default to be v1
- *
- * It is known v1 is not power failure safe. Not to use it.
- */
- #cmakedefine CONFIG_FS_FBDEV_DEFAULT_V1
- /**
- * whether flash block device default to be v2
- */
- #cmakedefine CONFIG_FS_FBDEV_DEFAULT_V2
- /**
- * whether flash block device v1 is supported
- */
- #cmakedefine CONFIG_FS_FBDEV_V1_SUPPORTED
- /**
- * whether flash block device v2 is supported
- */
- #cmakedefine CONFIG_FS_FBDEV_V2_SUPPORTED
- /**
- * whether to format on mounting flash file system failure
- *
- * It is highly recommended not to format on failure.
- */
- #cmakedefine CONFIG_FS_FORMAT_FLASH_ON_MOUNT_FAIL
- /**
- * whether to mount sdcard
- */
- #cmakedefine CONFIG_FS_MOUNT_SDCARD
- /**
- * whether to format on mounting sdcard file system failure
- */
- #cmakedefine CONFIG_FS_FORMAT_SDCARD_ON_MOUNT_FAIL
- /**
- * sdcard file system mount point
- */
- #cmakedefine CONFIG_FS_SDCARD_MOUNT_POINT "@CONFIG_FS_SDCARD_MOUNT_POINT@"
- #endif
|