blob: 9a2de5088b9a1ce14eae3902f6cd292a83cc4fcc [file] [log] [blame]
Uma Shankared34f342012-05-25 21:22:49 +05301This patch series adds support for ext4 ls,load and write features in uboot
2Journaling is supported for write feature.
3
Stephen Warren03e2ecf2012-10-22 06:43:50 +00004To enable support for the ext4 (and ext2) filesystem implementation,
5#define CONFIG_FS_EXT4
6
7If you want write support,
8#define CONFIG_EXT4_WRITE
9
Uma Shankared34f342012-05-25 21:22:49 +053010To Enable ext2 ls and load commands, modify the board specific config file with
11#define CONFIG_CMD_EXT2
Stephen Warren03e2ecf2012-10-22 06:43:50 +000012This automatically defines CONFIG_FS_EXT4 for you.
Uma Shankared34f342012-05-25 21:22:49 +053013
14To Enable ext4 ls and load commands, modify the board specific config file with
15#define CONFIG_CMD_EXT4
Stephen Warren03e2ecf2012-10-22 06:43:50 +000016This automatically defines CONFIG_FS_EXT4 for you.
Uma Shankared34f342012-05-25 21:22:49 +053017
18To enable ext4 write command, modify the board specific config file with
19#define CONFIG_CMD_EXT4
20#define CONFIG_CMD_EXT4_WRITE
Stephen Warren03e2ecf2012-10-22 06:43:50 +000021These automatically define CONFIG_FS_EXT4 and CONFIG_EXT4_WRITE for you.
22
23Also relevant are the generic filesystem commands,
24#define CONFIG_CMD_FS_GENERIC
25This does not automatically enable EXT4 support for you.
Uma Shankared34f342012-05-25 21:22:49 +053026
27Steps to test:
28
291. After applying the patch, ext4 specific commands can be seen
30 in the boot loader prompt using
Wolfgang Denk93e14592013-10-04 17:43:24 +020031 UBOOT #help
Uma Shankared34f342012-05-25 21:22:49 +053032
Wolfgang Denk93e14592013-10-04 17:43:24 +020033 ext4load- load binary file from a Ext4 file system
34 ext4ls - list files in a directory (default /)
35 ext4write- create a file in ext4 formatted partition
Uma Shankared34f342012-05-25 21:22:49 +053036
372. To list the files in ext4 formatted partition, execute
Wolfgang Denk93e14592013-10-04 17:43:24 +020038 ext4ls <interface> <dev[:part]> [directory]
39 For example:
40 UBOOT #ext4ls mmc 0:5 /usr/lib
Uma Shankared34f342012-05-25 21:22:49 +053041
423. To read and load a file from an ext4 formatted partition to RAM, execute
Wolfgang Denk93e14592013-10-04 17:43:24 +020043 ext4load <interface> <dev[:part]> [addr] [filename] [bytes]
44 For example:
45 UBOOT #ext4load mmc 2:2 0x30007fc0 uImage
Uma Shankared34f342012-05-25 21:22:49 +053046
474. To write a file to a ext4 formatted partition.
Wolfgang Denk93e14592013-10-04 17:43:24 +020048 a) First load a file to RAM at a particular address for example 0x30007fc0.
49 Now execute ext4write command
50 ext4write <interface> <dev[:part]> [filename] [Address] [sizebytes]
51 For example:
52 UBOOT #ext4write mmc 2:2 /boot/uImage 0x30007fc0 6183120
53 (here 6183120 is the size of the file to be written)
54 Note: Absolute path is required for the file to be written
Uma Shankared34f342012-05-25 21:22:49 +053055
56References :
57 -- ext4 implementation in Linux Kernel
58 -- Uboot existing ext2 load and ls implementation
59 -- Journaling block device JBD2 implementation in linux Kernel