Searched full:ext2 (Results 1 – 25 of 32) sorted by relevance
12
/Zephyr-Core-3.5.0/subsys/fs/ext2/ |
D | Kconfig | 4 # Ext2 file system 7 bool "Ext2 file system support" 10 Enable Ext2 file system support. 12 module = EXT2 13 module-str = Ext2 18 menu "Ext2 file system Settings" 41 int "Ext2 starting sector" 44 The current Ext2 implementation does not support GUID Partition Table. The starting sector
|
D | CMakeLists.txt | 4 add_library(EXT2 INTERFACE) target 5 target_include_directories(EXT2 INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}) 17 zephyr_library_link_libraries(EXT2)
|
D | ext2_impl.h | 11 #include <zephyr/fs/ext2.h> 19 /* Memory allocation for ext2 implementation */ 68 * @retval -EINVAL when superblock of ext2 was not detected 105 * @brief Create the ext2 file system 117 * @retval -ENOSPC when storage device is too small for ext2 file system
|
D | ext2_ops.c | 11 #include <zephyr/fs/ext2.h> 15 #include "ext2.h" 19 LOG_MODULE_DECLARE(ext2); 362 /* Superblock is used only once. Because ext2 may have only one instance at the time we could 653 LOG_WRN("Ext2 register error (%d)\n", rc); in ext2_init() 655 LOG_DBG("Ext2 fs registered\n"); in ext2_init()
|
D | ext2_disk_access.c | 11 #include "ext2.h" 14 LOG_MODULE_DECLARE(ext2);
|
D | ext2_format.c | 9 #include <zephyr/fs/ext2.h> 12 #include "ext2.h" 17 LOG_MODULE_DECLARE(ext2, LOG_LEVEL_DBG); 32 strcpy(cfg->volume_name, "ext2"); in validate_config() 128 LOG_ERR("Storage device too small to fit ext2 file system"); in ext2_format()
|
D | ext2_bitmap.c | 14 LOG_MODULE_DECLARE(ext2);
|
/Zephyr-Core-3.5.0/tests/subsys/fs/ext2/ |
D | testcase.yaml | 4 filesystem.ext2.default: 9 filesystem.ext2.big: 15 filesystem.ext2.sdcard: 19 filesystem.ext2.flash:
|
D | Kconfig | 4 mainmenu "Ext2 tests"
|
/Zephyr-Core-3.5.0/subsys/fs/ |
D | CMakeLists.txt | 17 add_subdirectory_ifdef(CONFIG_FILE_SYSTEM_EXT2 ext2) 23 target_link_libraries_ifdef(CONFIG_FILE_SYSTEM_EXT2 FS INTERFACE EXT2)
|
D | Kconfig | 88 rsource "ext2/Kconfig"
|
/Zephyr-Core-3.5.0/dts/bindings/gpio/ |
D | atmel-xplained-pro-header.yaml | 11 debugger connected should be called EXT7. PWR, EXT1, EXT2 and EXT3 are 18 * EXT2 is right angled and at the bottom right hand side of the board. 22 All MCU boards have to implement at least PWR, EXT1, EXT2 (on medium and
|
/Zephyr-Core-3.5.0/samples/subsys/fs/fs_sample/ |
D | README.rst | 10 This sample app demonstrates use of the file system API and uses the FAT or Ext2 file 19 (FAT or Ext2) See the :ref:`disk_access_api` documentation for Zephyr implementation details. 73 Building and Running EXT2 samples 76 Ext2 sample can be build for ``hifive_unmatched`` or ``bl5340_dvk_cpuapp``. Because
|
D | sample.yaml | 45 sample.filesystem.ext2:
|
/Zephyr-Core-3.5.0/include/zephyr/fs/ |
D | ext2.h | 12 /** @brief Configuration used to format ext2 file system. 31 uint8_t volume_name[17]; /* If first byte is 0 then name ext2" is given. */
|
/Zephyr-Core-3.5.0/tests/subsys/fs/ext2/src/ |
D | testfs_mount_flags.c | 9 #include <zephyr/fs/ext2.h>
|
D | testfs_open_flags.c | 9 #include <zephyr/fs/ext2.h>
|
D | testfs_ext_specific.c | 9 #include <zephyr/fs/ext2.h>
|
D | testfs_mount.c | 9 #include <zephyr/fs/ext2.h>
|
/Zephyr-Core-3.5.0/boards/arm/sam_v71_xult/ |
D | sam_v71_xult-common.dtsi | 86 <8 0 &pioa 3 0>, /* TWD0 EXT2 */ 87 <9 0 &pioa 4 0>, /* TWCK0 EXT2 */ 91 <13 0 &piod 21 0>, /* SPI0(MOSI) EXT2 */ 92 <14 0 &piod 20 0>, /* SPI0(MISO) EXT2 */ 93 <15 0 &piod 22 0>; /* SPI0(SCK) EXT2 */
|
/Zephyr-Core-3.5.0/boards/arm/atsaml21_xpro/doc/ |
D | index.rst | 124 - SERCOM1 115200 8n1 - connected to EXT2 and EXT3 141 - SERCOM5 - connected to EXT2 and EXT3
|
/Zephyr-Core-3.5.0/doc/introduction/ |
D | index.rst | 150 **Virtual File System Interface with ext2, FatFs, and LittleFS Support** 151 ext2, LittleFS and FatFS support; FCB (Flash Circular Buffer) for memory constrained
|
/Zephyr-Core-3.5.0/boards/arm/atsamr21_xpro/ |
D | atsamr21_xpro.dts | 70 <8 0 &porta 16 0>, /* TWD1 EXT2 */ 71 <9 0 &porta 17 0>, /* TWCK1 EXT2 */
|
/Zephyr-Core-3.5.0/boards/arm/sam4e_xpro/ |
D | sam4e_xpro.dts | 116 <10 0 &pioa 5 0>, /* URXD1 EXT2 */ 117 <11 0 &pioa 6 0>, /* UTXD1 EXT2 */
|
/Zephyr-Core-3.5.0/samples/subsys/fs/fs_sample/src/ |
D | main.c | 37 #include <zephyr/fs/ext2.h>
|
12