wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | JFFS2 options and usage. |
| 2 | ----------------------- |
| 3 | |
| 4 | JFFS2 in U-Boot is a read only implementation of the file system in |
Jon Loeliger | b3aff0c | 2007-07-10 11:19:50 -0500 | [diff] [blame] | 5 | Linux with the same name. To use JFFS2 define CONFIG_CMD_JFFS2. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 6 | |
| 7 | The module adds three new commands. |
| 8 | fsload - load binary file from a file system image |
| 9 | fsinfo - print information about file systems |
| 10 | ls - list files in a directory |
wdenk | f39748a | 2004-06-09 13:37:52 +0000 | [diff] [blame] | 11 | chpart - change active partition |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 12 | |
wdenk | 06d01db | 2003-03-14 20:47:52 +0000 | [diff] [blame] | 13 | If you boot from a partition which is mounted writable, and you |
| 14 | update your boot environment by replacing single files on that |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 15 | partition, you should also define CONFIG_SYS_JFFS2_SORT_FRAGMENTS. Scanning |
wdenk | 06d01db | 2003-03-14 20:47:52 +0000 | [diff] [blame] | 16 | the JFFS2 filesystem takes *much* longer with this feature, though. |
| 17 | Sorting is done while inserting into the fragment list, which is |
| 18 | more or less a bubble sort. That algorithm is known to be O(n^2), |
| 19 | thus you should really consider if you can avoid it! |
| 20 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 21 | |
Simon Glass | b2482df | 2016-10-02 18:00:59 -0600 | [diff] [blame] | 22 | There only one way for JFFS2 to find the disk. It uses the flash_info |
| 23 | structure to find the start of a JFFS2 disk (called partition in the code) |
| 24 | and you can change where the partition is with two defines. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 25 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 26 | CONFIG_SYS_JFFS2_FIRST_BANK |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 27 | defined the first flash bank to use |
| 28 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 29 | CONFIG_SYS_JFFS2_FIRST_SECTOR |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 30 | defines the first sector to use |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 31 | --- |
| 32 | |
| 33 | TODO. |
| 34 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 35 | Remove the assumption that JFFS can dereference a pointer |
| 36 | into the disk. The current code do not work with memory holes |
| 37 | or hardware with a sliding window (PCMCIA). |