1 |
27 |
unneback |
2003-02-24 Jonathan Larmour
|
2 |
|
|
|
3 |
|
|
* cdl/ramfs.cdl: Fix doc link.
|
4 |
|
|
|
5 |
|
|
2002-12-06 Andrew Lunn
|
6 |
|
|
|
7 |
|
|
* cdl/ramfs.cdl: Implements the CYGINT_IO_FILEIO_FS interface
|
8 |
|
|
|
9 |
|
|
2002-01-25 Jonathan Larmour
|
10 |
|
|
|
11 |
|
|
* tests/fileio1.c (main): Check in listdir that the number of
|
12 |
|
|
dirents is correct.
|
13 |
|
|
|
14 |
|
|
2001-07-26 Jonathan Larmour
|
15 |
|
|
|
16 |
|
|
* src/ramfs.c (findbuffer_indirect1): Determine correct offset in
|
17 |
|
|
indirect block list.
|
18 |
|
|
(findbuffer_indirect2): Ditto.
|
19 |
|
|
(findbuffer_direct): Compare block index with number of blocks
|
20 |
|
|
correctly.
|
21 |
|
|
|
22 |
|
|
2000-10-05 Nick Garnett
|
23 |
|
|
|
24 |
|
|
* tests/fileio1.c:
|
25 |
|
|
Extended to check getcwd() and chdir() functionality more fully.
|
26 |
|
|
|
27 |
|
|
2000-08-18 Nick Garnett
|
28 |
|
|
|
29 |
|
|
* cdl/ramfs.cdl:
|
30 |
|
|
* src/ramfs.c:
|
31 |
|
|
* tests/fileio1.c:
|
32 |
|
|
Created this example RAM filesystem both as a usable filesystem
|
33 |
|
|
and as an example of how to build filesystems for the fileio
|
34 |
|
|
infrastructure.
|
35 |
|
|
|
36 |
|
|
|
37 |
|
|
|
38 |
|
|
//===========================================================================
|
39 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
40 |
|
|
// -------------------------------------------
|
41 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
42 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
43 |
|
|
//
|
44 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
45 |
|
|
// the terms of the GNU General Public License as published by the Free
|
46 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
47 |
|
|
//
|
48 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
49 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
50 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
51 |
|
|
// for more details.
|
52 |
|
|
//
|
53 |
|
|
// You should have received a copy of the GNU General Public License along
|
54 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
55 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
56 |
|
|
//
|
57 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
58 |
|
|
// or inline functions from this file, or you compile this file and link it
|
59 |
|
|
// with other works to produce a work based on this file, this file does not
|
60 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
61 |
|
|
// License. However the source code for this file must still be made available
|
62 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
63 |
|
|
//
|
64 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
65 |
|
|
// this file might be covered by the GNU General Public License.
|
66 |
|
|
//
|
67 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
68 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
69 |
|
|
// -------------------------------------------
|
70 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
71 |
|
|
//===========================================================================
|
72 |
|
|
|
73 |
|
|
|