URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [fs/] [fat/] [current/] [ChangeLog] - Rev 856
Go to most recent revision | Compare with Previous | Blame | View Log
2009-04-28 John Dallaway <john@dallaway.org.uk>
cdl/fatfs.cdl: Use CYGPKG_IO_FILEIO as the parent.
2008-08-19 Andrew Lunn <andrew.lunn@ascom.ch>
* cdl/fatfs.cdl: Add configury for the disk device names to be
used for the tests. Default to the synthetic tests, since what
seems to be the most used test platform.
* doc/README.txt: Updates for the naming scheme.
* doc/fat16.ecm: Fit the new naming scheme.
2008-05-13 Savin Zlobec <savinz@users.sourceforge.net>
* src/fatfs.c: Fix handling of '.' and '..' nodes in dirsearch.
2008-04-02 Xinghua Yang <yxinghua@sunnorth.com.cn>
Andrew Lunn <andrew.lunn@ascom.ch>
Taiyun Wang <taiyun@sunnorth.com.cn>
* cdl/fatfs.cdl: Use CYGPKG_FS_FAT_RET_DIRENT_DTYPE to control
whether fatfs sets file type in fatfs_fo_dirread.
* src/fatfs.c: Set file type in fatfs_fo_dirread
* test/fatfs1.c: Test the new d_type in dirent when present.
2007-07-31 Hajime Ishitani <pigmon@mail.snd.co.jp>
* src/fatfs.c: When removing a directory, first remove . and
.. nodes.
2007-02-05 Ya-Chau Yang <a8850607@stmail.fju.edu.tw>
Savin Zlobec <savinz@users.sourceforge.net>
* src/fatfs_supp.c: Fixed FAT32 cluster handling in
fatfs_delete_file and fatfs_rename_file.
2007-01-27 Andrew Lunn <andrew.lunn@ascom.ch>
* tests/fatfs1.c: Fixed the format string to diag_printf()
to remove compiler warnings.
2006-08-04 Paul Fine <pfine@dtccom.com>
Andrew Lunn <andrew.lunn@ascom.ch>
* src/fats.c: Added functionality to the fatfs_getinfo() function
to return disk usage information about the filesystem, making this
information accessible through the cyg_fs_getinfo() interface.
* tests/fatfs1.c: Added code to test the disk usage.
2005-07-30 Andrew Lunn <andrew.lunn@ascom.ch>
* src/fatfs_supp.c: Correct types to remove compiler warnings.
2005-06-07 Savin Zlobec <savin@elatec.si>
* src/fatfs_supp.c: lseek returned EEOF when at the end of the
file rather than the current position.
2005-03-27 Andrew Lunn <andrew.lunn@ascom.ch>
* tests/fatfs1.c: Fixed various compiler warnings about types passed to
diag_printf().
2005-01-18 Savin Zlobec <savin@elatec.si>
* src/fatfs_supp.c:
Fixed FAT12/16 root dir size checking in read_next_raw_dentry -
reported by Stephane Royo.
2004-12-13 John Dallaway <jld@ecoscentric.com>
* tests/fileio1.c: Rename to fatfs1.c. eCos test names should be
unique.
* cdl/fatfs.cdl: Build the renamed test.
2004-11-14 Jani Monoses <jani@iv.ro>
* test/fileio1.c: Start the test using main, not via a
thread. This makes is more uniform with the other fileio1 tests.
2004-11-11 David Brennan <eCos@brennanhome.com>
* src/fatfs.c: fixed typos in TRACE statements
2004-10-23 David Brennan <eCos@brennanhome.com>
* tests/fileio1.c: fixed check for return value for attribute
tests.
2004-10-17 David Brennan <eCos@brennanhome.com>
* src/fatfs.c:
* src/fatfs_supp.c:
* include/fatfs.h (NEW):
* tests/fileio1.c:
* cdl/fatfs.cdl: Added configurable support for FAT filesystem
attributes.
2004-10-13 David Brennan <eCos@brennanhome.com>
* src/fatfs.c: Added code to setinfo to allow performing a
file-system sync
2004-10-06 David Brennan <eCos@brennanhome.com>
* tests/fileio1.c: Added include of <stdio.h> to fix compiler
warning for rename().
2004-08-10 Savin Zlobec <savin@elatec.si>
* src/fatfs.h:
* src/fatfs_supp.c:
Added FAT32 support.
2004-07-13 Savin Zlobec <savin@elatec.si>
* cdl/fatfs.cdl:
* src/fatfs.h:
* src/fatfs.c:
* src/fatfs_supp.c:
* src/fatfs_ncache.c:
Refactored the code and changed file node cache memory
allocation from malloc to custom pool based one.
2004-07-05 Savin Zlobec <savin@elatec.si>
* cdl/fatfs.cdl:
* src/fatfs.h:
* src/fatfs.c:
* src/fatfs_supp.c:
* src/fatfs_ncache.c:
Removed FAT table cache - it added little or no speed gain to
the fatfs. Implemented private data for fatfs file descriptors which
holds the current FAT cluster position, this greatly improves
read/write times for big files comparing to the old implementation.
* src/fatfs_tcache.c: Removed.
2004-06-24 Savin Zlobec <savin@elatec.si>
* src/fatfs.h:
* src/fatfs_supp.c:
Implemented fatfs_get_disk_usage function for
getting the number of total and free clusters.
2004-01-19 Nick Garnett <nickg@calivar.com>
* doc/README.txt:
* doc/fatfs.ecm:
* doc/fat16.ecm:
* doc/mkdisk0:
Added some initial basic documentation, sample configurations and
shell script to manufacture test disk image.
2003-10-18 Savin Zlobec <savin@elatec.si>
* cdl/fatfs.cdl:
* src/fatfs.h:
* src/fatfs_ncache.c:
Fixed node allocation tresholds (there should be no
more unnecessary node memory allocation/deallocation).
Added more sanity checks and a cdl option to enable them.
2003-10-17 Savin Zlobec <savin@elatec.si>
* src/fatfs_supp.c: Fixed dos to unix date conversion.
2003-10-16 Savin Zlobec <savin@elatec.si>
* src/fatfs.c: Fixed dir entry searching.
* src/fatfs_ncache.c: Added more sanity checks.
2003-10-13 Savin Zlobec <savin@elatec.si>
* src/fatfs.h:
* src/fatfs.c:
* src/fatfs_supp.c:
Added FAT12 support and FAT type detection.
Fixed file deletion.
Fixed reusing of deleted directory entries.
Fixed free clusters search.
Fixed directory renaming.
Fixed out of space situation while writting.
2003-09-01 Savin Zlobec <savin@elatec.si>
* cdl/fatfs.cdl:
* src/fatfs.h:
* src/fatfs.c:
* src/fatfs_supp.c:
* src/fatfs_tcache.c:
* src/fatfs_ncache.c:
Implemented block IO with BLib, fixed FAT data access
problems and added FAT table cache memory constraints.
2003-07-07 Savin Zlobec <savin@elatec.si>
* cdl/fatfs.cdl:
* src/fatfs.h:
* src/fatfs.c:
* src/fatfs_supp.c:
* src/fatfs_ncache.c:
* src/fatfs_tcache.c:
A FAT16 filesystem implementation
//===========================================================================
// ####GPLCOPYRIGHTBEGIN####
// -------------------------------------------
// This file is part of eCos, the Embedded Configurable Operating System.
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2009 Free Software Foundation, Inc.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 or (at your option) any
// later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the
// Free Software Foundation, Inc., 51 Franklin Street,
// Fifth Floor, Boston, MA 02110-1301, USA.
// -------------------------------------------
// ####GPLCOPYRIGHTEND####
//===========================================================================
Go to most recent revision | Compare with Previous | Blame | View Log