summaryrefslogtreecommitdiffstats
path: root/fs
Commit message (Collapse)AuthorAgeFilesLines
* - Implement tree structure for devicessascha2007-10-191-9/+30
| | | | | | | - Use device tree structure to implement partitions - Let devinfo print a nice tree - Introduce 'fixed' partitions which are not removable - Fix mount: It was not possible to mount on a relative path.
* use S_ISDIR macro in open()sascha2007-10-161-1/+1
|
* Use Linux kernel list for drivers and devices instead of handmadeSascha Hauer2007-10-111-8/+12
| | | | list.
* export symbolsSascha Hauer2007-10-071-0/+2
|
* change files and dirs to rwxrwxrwxSascha Hauer2007-10-042-2/+3
|
* export functionsSascha Hauer2007-10-041-0/+26
|
* change files and directories to 0777Sascha Hauer2007-10-031-7/+7
|
* remove debug printf, replace with debugSascha Hauer2007-10-031-23/+19
|
* declare lots of functions staticSascha Hauer2007-09-283-27/+27
|
* pass file size from read_fileSascha Hauer2007-09-271-1/+5
|
* fix bug in ramfs when creating files whose parents do not existSascha Hauer2007-09-271-2/+5
|
* handle NULL Pointers in readdir/closedir properlySascha Hauer2007-09-251-0/+8
|
* - change function declarations for better standard conformity:Sascha Hauer2007-09-241-4/+4
| | | | | | | int open(const char *pathname, int flags); -> int open(const char *pathname, int flags, ...); int mkdir(const char *pathname); -> int mkdir(const char *pathname, mode_t mode);
* remove unused includesSascha Hauer2007-09-211-2/+0
|
* remove uncompilable filesystemsSascha Hauer2007-09-2131-9701/+0
|
* implement flash protectionSascha Hauer2007-07-162-0/+29
|
* implement memmap().Sascha Hauer2007-07-152-0/+27
| | | | | | With this function we can get a pointer to directly memory mapped devices like nor flash or RAM. Useful for bootm where we save one memcopy when the image is mappable
* implement truncate for devfsSascha Hauer2007-07-051-0/+8
|
* svn_rev_706Sascha Hauer2007-07-053-0/+66
| | | | add file headers
* svn_rev_653Sascha Hauer2007-07-051-1/+53
| | | | restructure tree, add reginfo command
* svn_rev_633Sascha Hauer2007-07-051-18/+23
| | | | add some comments, minor cleanups
* svn_rev_605Sascha Hauer2007-07-051-1/+29
| | | | make read_file global
* svn_rev_566Sascha Hauer2007-07-051-2/+2
| | | | fs support is not optional
* svn_rev_544Sascha Hauer2007-07-051-2/+2
| | | | make fs menuconfig
* svn_rev_465Sascha Hauer2007-07-052-8/+5
| | | | make fs support mandatory
* svn_rev_452Sascha Hauer2007-07-051-1/+18
| | | | add erase function
* svn_rev_448Sascha Hauer2007-07-051-0/+8
| | | | add erase
* svn_rev_438Sascha Hauer2007-07-051-1/+1
|
* svn_rev_437Sascha Hauer2007-07-051-2/+4
| | | | use dev_read/dev_write
* svn_rev_420Sascha Hauer2007-07-054-24/+24
| | | | | | | | | | | - do more POSIX: - use DIR instead of struct dirent - use (struct dirent)->d_name instead of (struct dirent)->name - switch to a new layout for U_BOOT_CMD: - use C99 initializers to be able to add more fields to the command struct - add aliases for commands (needed mainly for help -> ? and test -> [ - This is not done for all commands yet, but the compiler will tell you ;)
* svn_rev_406Sascha Hauer2007-07-051-41/+105
| | | | let normalise path allocate the string instead of changing the original one
* svn_rev_396Sascha Hauer2007-07-051-4/+12
| | | | fix truncate (again). This still looks ugly
* svn_rev_379Sascha Hauer2007-07-051-0/+1
|
* svn_rev_378Sascha Hauer2007-07-051-3/+9
| | | | fix truncate
* svn_rev_372Sascha Hauer2007-07-051-67/+67
|
* svn_rev_371Sascha Hauer2007-07-051-1/+1
| | | | fix mem hole
* svn_rev_369Sascha Hauer2007-07-054-4/+0
| | | | include asm-generic in errno.h instead of all other files
* svn_rev_364Sascha Hauer2007-07-051-38/+33
| | | | | | - fix free corruption in open - simplify mount() - fix mem hole
* svn_rev_339Sascha Hauer2007-07-051-1/+1
|
* svn_rev_338Sascha Hauer2007-07-051-70/+173
| | | | add rmdir and unlink, make creat more like posix, add common function for prerequites checking
* svn_rev_337Sascha Hauer2007-07-051-1/+4
|
* svn_rev_325Sascha Hauer2007-07-051-60/+179
| | | | implement . and .. entries
* svn_rev_324Sascha Hauer2007-07-051-3/+3
| | | | use xzalloc instead of malloc/memset
* svn_rev_301Sascha Hauer2007-07-051-2/+2
|
* svn_rev_288Sascha Hauer2007-07-051-13/+7
| | | | remove handling of / in stat function. We will never be called with / here
* svn_rev_287Sascha Hauer2007-07-051-77/+70
| | | | add lseek implementation, remove special handling of /dev/ (is now implemented as devfs)
* svn_rev_286Sascha Hauer2007-07-051-20/+18
|
* svn_rev_284Sascha Hauer2007-07-052-0/+123
| | | | add devfs
* svn_rev_281Sascha Hauer2007-07-053-3/+60
| | | | read support for ramfs
* svn_rev_272Sascha Hauer2007-07-053-77/+172
| | | | more FS work