summaryrefslogtreecommitdiffstats
path: root/fs/Kconfig
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'next'Sascha Hauer2012-06-061-0/+4
|\
| * fs: Add NFS supportSascha Hauer2012-05-141-0/+4
| | | | | | | | | | | | | | | | This patch adds readonly NFS support. Currently no links are supported. This is based on the previous U-Boot/NetBSD based code and some Kernel bits. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* | fs tftp: depend on NET, not on NET_TFTPSascha Hauer2012-05-311-1/+1
| | | | | | | | | | | | | | The tftp filesystem support is by no means dependent on the old tftp support, it depends on NET though. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* | fs/tftp: depend on NET_TFTPEric Bénard2012-05-171-0/+1
|/ | | | | | | else the option remains selected when network gets disabled Signed-off-by: Eric Bénard <eric@eukrea.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Add automount supportSascha Hauer2012-03-181-0/+3
| | | | | | | | | | | | | | This patch adds an automount command which makes it possible to execute a script when a certain directory is first accessed. It's the commands responsibility to make this directory available (bringing devices up and mounting it). This results in automount support which makes sure that from the shell every file can be accessed without having to care for device bringup. Bringing up devices may be expensive (USB, dhcp). The automount support makes it easy for the environment to bringup devices when they are actually needed. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Add suport for tftp as a filesystemSascha Hauer2012-02-191-0/+4
| | | | | | | | | | | | | | | | | | This adds tftp filesystem support. It currently duplicates significant amounts of the tftp (command) support. This is ok since we can eventually drop the original tftp command later. tftp is not really suitable to be handled as a filesystem. It lacks support for stat, reading directories and other things. Handling it as a filesystem has one big advantage though: tftp is no special case for boot scripts and/or commands anymore which makes them simpler. This implementation has some improvements to the original tftp command. It supports blocksize negotiation which speeds up transfers if the tftp server supports it. Also we can determine the filesize to transfer if the remote end supports it. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fs: add fat filesystem supportSascha Hauer2011-04-121-0/+2
| | | | | | | | | | | | | | This code is based on: http://elm-chan.org/fsw/ff/00index_e.html FatFs Generic FAT File System Module This patch offers a read/write implementation for barebox. The code does not exaclty match barebox coding style, but works nicely and should be ready to give it a try. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* add partition mtd supportSascha Hauer2010-07-051-0/+3
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* This is Kconfig cleanup patch (not all configurations will use CFI, SPI, ↵Menon, Nishanth2008-05-121-0/+10
| | | | | | | RAMFS and DEVFS). * Enable CFI and SPI drivers menuconfig option to be able to disable them in menuconfig. * Introduce capability to disable ramfs and devfs.
* 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-051-5/+2
| | | | make fs support mandatory
* svn_rev_234Sascha Hauer2007-07-051-0/+12
beginning filesystem support