Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 7 and Version 8 of TBR/UserManual/RTEMS_File_System


Ignore:
Timestamp:
02/23/10 07:48:38 (14 years ago)
Author:
ChrisJohns
Comment:

/* Using the RFS */

Legend:

Unmodified
Added
Removed
Modified
  • TBR/UserManual/RTEMS_File_System

    v7 v8  
    7575
    7676Regular files are an inode with a block map. Internally the RFS code maintains the inode data in memory while a file is open. If the file is opened a second time the inode data is shared between the file handles. This allows the POSIX required time fields to be maintained with minimal overhead.
    77 = Using the RFS =
     77= RFS Shell Configuration =
    7878
    7979
    80 The easiest way to use the RFS and to play with it is to enable the shell in your application. To do this add to the file that handles your {{{condefs.h</code> defines:
     80The easiest way to use the RFS and to play with it is to enable the shell in your application. To do this add to the file that handles your <tt>condefs.h</tt> defines:
    8181
    8282 #define CONFIGURE_SHELL_COMMANDS_INIT
     
    103103 flash disk erased successful
    104104
    105 The {{{fderase</code> command can be found in the RFS test application. Next we format the disk with the RFS format command. This command is:
     105The <tt>fderase</tt> command can be found in the RFS test application. Next we format the disk with the RFS format command. This command is:
    106106
    107107<blockquote>
     
    149149        blocks used: 84 (5.5%)
    150150        inodes used: 1 (0.0%)
     151= RFS Programable Configuration =