diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog index ccb4e4e36..eb05614ae 100644 --- a/nuttx/ChangeLog +++ b/nuttx/ChangeLog @@ -463,3 +463,4 @@ random access to large files. 0.3.15 2008-xx-xx Gregory Nutt + * Add support for ROMFS filesystem (initial checkin untested) diff --git a/nuttx/Documentation/NuttShell.html b/nuttx/Documentation/NuttShell.html index bedb624f8..d25d6d8c4 100644 --- a/nuttx/Documentation/NuttShell.html +++ b/nuttx/Documentation/NuttShell.html @@ -8,7 +8,7 @@

NuttShell (NSH)

-

Last Updated: September 5, 2008

+

Last Updated: September 10, 2008

@@ -1485,7 +1485,7 @@ nsh> cd - !CONFIG_DISABLE_ENVIRON && CONFIG_NFILE_DESCRIPTORS > 0 + !CONFIG_DISABLE_ENVIRON && CONFIG_NFILE_DESCRIPTORS > 0 cp @@ -1530,11 +1530,11 @@ nsh> mkdir - !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 + !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_WRITABLE4 mkfatfs - !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_FAT + !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_FAT mkfifo @@ -1542,11 +1542,11 @@ nsh> mkrd - !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_FAT + !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_WRITABLE4 mount - !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_FAT + !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_READABLE3 ping @@ -1569,11 +1569,11 @@ nsh> rm - !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 + !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_WRITABLE4 rmdir - !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 + !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_WRITABLE4 set @@ -1593,7 +1593,7 @@ nsh> umount - !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_FAT + !CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_READABLE3 unset @@ -1606,10 +1606,18 @@ nsh>

1 - Because of hardware padding, the actual required packet size may be larger

-

2 + Because of hardware padding, the actual required packet size may be larger
+ 2 Special TFTP server start-up optionss will probably be required to permit - creation of files for the correct operation of the put command.

+ creation of files for the correct operation of the put command.
+ 3 + CONFIG_FS_READABLE is not a user configuration but is set automatically + if any readable filesystem is selected. At present, this is either CONFIG_FS_FAT + or CONFIG_FS_ROMFS.
+ 4 + CONFIG_FS_WRITABLE is not a user configuration but is set automatically + if any writable filesystem is selected. At present, this is only CONFIG_FS_FAT.
+

diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html index 2e8aa1106..9dc58d909 100644 --- a/nuttx/Documentation/NuttX.html +++ b/nuttx/Documentation/NuttX.html @@ -8,7 +8,7 @@

NuttX RTOS

-

Last Updated: September 8, 2008

+

Last Updated: September 10, 2008

@@ -379,10 +379,17 @@

-

  • VFAT filesystem support.
  • +
  • FAT12/16/32 filesystem support.
  • + +
    + +

    +

  • ROMFS filesystem support.
  • +

    + @@ -1090,6 +1097,7 @@ buildroot-0.1.0 2007-03-09 <spudmonkey@racsa.co.cr>
    
     
    +

    File Systems

    + +

    Network Support

    TCP/IP and UDP support via uIP