]> git.ipfire.org Git - people/ms/u-boot.git/blame - doc/README.ext4
net: phy: ensure Gigabit features are masked off if requested
[people/ms/u-boot.git] / doc / README.ext4
CommitLineData
ed34f34d
US
1This patch series adds support for ext4 ls,load and write features in uboot
2Journaling is supported for write feature.
3
03e2ecf6
SW
4To 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
ed34f34d
US
10To Enable ext2 ls and load commands, modify the board specific config file with
11#define CONFIG_CMD_EXT2
03e2ecf6 12This automatically defines CONFIG_FS_EXT4 for you.
ed34f34d
US
13
14To Enable ext4 ls and load commands, modify the board specific config file with
15#define CONFIG_CMD_EXT4
03e2ecf6 16This automatically defines CONFIG_FS_EXT4 for you.
ed34f34d
US
17
18To enable ext4 write command, modify the board specific config file with
19#define CONFIG_CMD_EXT4
20#define CONFIG_CMD_EXT4_WRITE
03e2ecf6
SW
21These 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.
ed34f34d
US
26
27Steps to test:
28
291. After applying the patch, ext4 specific commands can be seen
30 in the boot loader prompt using
93e14596 31 UBOOT #help
ed34f34d 32
93e14596
WD
33 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
ed34f34d
US
36
372. To list the files in ext4 formatted partition, execute
93e14596
WD
38 ext4ls <interface> <dev[:part]> [directory]
39 For example:
40 UBOOT #ext4ls mmc 0:5 /usr/lib
ed34f34d
US
41
423. To read and load a file from an ext4 formatted partition to RAM, execute
93e14596
WD
43 ext4load <interface> <dev[:part]> [addr] [filename] [bytes]
44 For example:
45 UBOOT #ext4load mmc 2:2 0x30007fc0 uImage
ed34f34d
US
46
474. To write a file to a ext4 formatted partition.
93e14596
WD
48 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
ed34f34d
US
55
56References :
57 -- ext4 implementation in Linux Kernel
58 -- Uboot existing ext2 load and ls implementation
59 -- Journaling block device JBD2 implementation in linux Kernel