blob: 0245da0488fb6ef65d6b665b332cf0e1f3ce81db [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001JFFS2 options and usage.
2-----------------------
3
4JFFS2 in U-Boot is a read only implementation of the file system in
Jon Loeligerb3aff0c2007-07-10 11:19:50 -05005Linux with the same name. To use JFFS2 define CONFIG_CMD_JFFS2.
wdenkc6097192002-11-03 00:24:07 +00006
7The module adds three new commands.
8fsload - load binary file from a file system image
9fsinfo - print information about file systems
10ls - list files in a directory
wdenkf39748a2004-06-09 13:37:52 +000011chpart - change active partition
wdenkc6097192002-11-03 00:24:07 +000012
Simon Glass59e12a42017-05-17 03:25:38 -060013If you do now need the commands, you can enable the filesystem separately
14with CONFIG_FS_JFFS2 and call the jffs2 functions yourself.
15
wdenk06d01db2003-03-14 20:47:52 +000016If you boot from a partition which is mounted writable, and you
17update your boot environment by replacing single files on that
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020018partition, you should also define CONFIG_SYS_JFFS2_SORT_FRAGMENTS. Scanning
wdenk06d01db2003-03-14 20:47:52 +000019the JFFS2 filesystem takes *much* longer with this feature, though.
20Sorting is done while inserting into the fragment list, which is
21more or less a bubble sort. That algorithm is known to be O(n^2),
22thus you should really consider if you can avoid it!
23
wdenkc6097192002-11-03 00:24:07 +000024
Simon Glassb2482df2016-10-02 18:00:59 -060025There only one way for JFFS2 to find the disk. It uses the flash_info
26structure to find the start of a JFFS2 disk (called partition in the code)
27and you can change where the partition is with two defines.
wdenkc6097192002-11-03 00:24:07 +000028
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020029CONFIG_SYS_JFFS2_FIRST_BANK
wdenkc6097192002-11-03 00:24:07 +000030 defined the first flash bank to use
31
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020032CONFIG_SYS_JFFS2_FIRST_SECTOR
wdenkc6097192002-11-03 00:24:07 +000033 defines the first sector to use
wdenkc6097192002-11-03 00:24:07 +000034---
35
36TODO.
37
wdenk8bde7f72003-06-27 21:31:46 +000038 Remove the assumption that JFFS can dereference a pointer
39 into the disk. The current code do not work with memory holes
40 or hardware with a sliding window (PCMCIA).