|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| .github/workflows/ | | 12-May-2024 | - | 71 | 65 |
| fsck/ | | 12-May-2024 | - | 18,083 | 14,310 |
| include/ | | 12-May-2024 | - | 1,956 | 1,479 |
| lib/ | | 12-May-2024 | - | 7,941 | 6,879 |
| m4/ | | 12-May-2024 | - | 3 | 1 |
| man/ | | 12-May-2024 | - | 889 | 852 |
| mkfs/ | | 12-May-2024 | - | 2,575 | 2,064 |
| scripts/ | | 12-May-2024 | - | 343 | 278 |
| tools/ | | 12-May-2024 | - | 20,135 | 16,089 |
| .gitignore | D | 12-May-2024 | 543 | 59 | 54 |
| AUTHORS | D | 12-May-2024 | 81 | 2 | 1 |
| BUILD.gn | D | 12-May-2024 | 620 | 23 | 19 |
| COPYING | D | 12-May-2024 | 44.3 KiB | 865 | 717 |
| ChangeLog | D | 12-May-2024 | 157 | 5 | 4 |
| License | D | 12-May-2024 | 44.3 KiB | 865 | 717 |
| MODULE_LICENSE_GPL | D | 12-May-2024 | 0 | | |
| Makefile.am | D | 12-May-2024 | 75 | 6 | 2 |
| OAT.xml | D | 12-May-2024 | 5.7 KiB | 85 | 37 |
| README.OpenSource | D | 12-May-2024 | 1,023 | 21 | 20 |
| README.md | D | 12-May-2024 | 1,007 | 50 | 34 |
| VERSION | D | 12-May-2024 | 18 | 3 | 2 |
| VERSIONING | D | 12-May-2024 | 9.1 KiB | 224 | 169 |
| autogen.sh | D | 12-May-2024 | 85 | 8 | 5 |
| bundle.json | D | 12-May-2024 | 885 | 38 | 38 |
| config.h | D | 12-May-2024 | 6.1 KiB | 218 | 57 |
| configure.ac | D | 12-May-2024 | 6 KiB | 272 | 233 |
README.OpenSource
1[
2 {
3 "Name" : "f2fs-tools",
4 "License" : "GNU GPL-2.0",
5 "License File" : "COPYING",
6 "Version Number" : "1.15.0",
7 "Owner" : "Jaegeuk Kim <jaegeuk@kernel.org>",
8 "Upstream URL" : "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/tag/?h=v1.15.0",
9 "Description" : "The f2fs-tools package contains the utilities for handling the f2fs file system."
10 },
11 {
12 "Name" : "f2fs-tools",
13 "License" : "GNU LGPL-2.1+",
14 "License File" : "COPYING",
15 "Version Number" : "1.15.0",
16 "Owner" : "Jaegeuk Kim <jaegeuk@kernel.org>",
17 "Upstream URL" : "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/tag/?h=v1.15.0",
18 "Description" : "The f2fs-tools package contains the utilities for handling the f2fs file system."
19 }
20]
21
README.md
1F2FS format utility
2---------------------
3
4To use the f2fs filesystem, you should format the storage partition
5with this utility. Otherwise, you cannot mount f2fs.
6
7Before compilation
8------------------
9
10You should install the following packages.
11 - libuuid-devel or uuid-dev
12 - autoconf
13 - libtool
14 - libselinux1-dev
15
16Initial compilation
17-------------------
18
19Before initial compilation, autoconf/automake tools should be run.
20
21 ./autogen.sh
22
23How to compile
24--------------
25
26 ./configure
27 make
28 make install
29
30How to cross-compile (e.g., for ARM)
31------------------------------------
32
33 1. Add the below line into mkfs/Makefile.am:
34 mkfs_f2fs_LDFLAGS = -all-static
35
36 2. Add the below line into fsck/Makefile.am:
37 fsck_f2fs_LDFLAGS = -all-static
38
39 3. then, do:
40 LDFLAGS=--static ./configure \
41 --host=arm-none-linux-gnueabi --target=arm-none-linux-gnueabi
42 make
43
44How to run by default
45---------------------
46
47 mkfs.f2fs -l [LABEL] $DEV
48
49For more mkfs options, see the man page.
50