summaryrefslogtreecommitdiffstats
path: root/fs
Commit message (Collapse)AuthorAgeFilesLines
* 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
* svn_rev_270Sascha Hauer2007-07-053-50/+183
| | | | WIP FS support
* svn_rev_268Sascha Hauer2007-07-053-235/+418
| | | | WIP
* svn_rev_264Sascha Hauer2007-07-051-1/+0
|
* svn_rev_263Sascha Hauer2007-07-051-0/+4
|
* svn_rev_261Sascha Hauer2007-07-053-105/+539
| | | | WIP Filesystem support
* svn_rev_252Sascha Hauer2007-07-051-0/+1
| | | | WIP
* svn_rev_238Sascha Hauer2007-07-051-30/+0
| | | | moved mkmodestr() to fs/fs.c
* svn_rev_234Sascha Hauer2007-07-056-126/+241
| | | | beginning filesystem support
* svn_rev_003Sascha Hauer2007-07-057-144/+0
| | | | remove all #if 0 and #if 1
* Move "ar" flags to config.mk to allow for silent "make -s"Wolfgang Denk2006-10-096-6/+6
| | | | Based on patch by Mike Frysinger, 20 Jun 2006
* Add support for a saving build objects in a separate directory.Marian Balakowicz2006-09-017-44/+60
| | | | | | | | | | | | | | | | | | | | | Modifications are based on the linux kernel approach and support two use cases: 1) Add O= to the make command line 'make O=/tmp/build all' 2) Set environement variable BUILD_DIR to point to the desired location 'export BUILD_DIR=/tmp/build' 'make' The second approach can also be used with a MAKEALL script 'export BUILD_DIR=/tmp/build' './MAKEALL' Command line 'O=' setting overrides BUILD_DIR environent variable. When none of the above methods is used the local build is performed and the object files are placed in the source directory.
* Fix JFFS2 support for legacy NAND driver.Marian Balakowicz2006-04-081-6/+28
| | | | Some more NAND cleanup and small fixes.
* Add support for Lite5200B board.Wolfgang Denk2006-03-171-2/+2
| | | | Patch by Patch by Jose Maria (Txema) Lopez, 16 Jan 2006
* Add crc of data to jffs2 (in jffs2_1pass_build_lists()).Wolfgang Denk2006-03-122-1/+14
| | | | Patch by Rick Bronson, 15 Jun 2005
* Re-factoring the legacy NAND code (legacy NAND now only in board-specificBartlomiej Sieka2006-03-052-11/+15
| | | | | | | code and in SoC code). Boards using the old way have CFG_NAND_LEGACY and BOARDLIBS = drivers/nand_legacy/libnand_legacy.a added. Build breakage for NETTA.ERR and NETTA_ISDN - will go away when the new NAND support is implemented for these boards.