• Home
Name Date Size #Lines LOC

..--

.github/workflows/03-May-2024-7165

fsck/03-May-2024-18,26414,444

include/03-May-2024-2,0161,529

lib/03-May-2024-7,8766,823

m4/03-May-2024-31

man/03-May-2024-929892

mkfs/03-May-2024-2,5382,029

scripts/03-May-2024-343278

tools/03-May-2024-3,7993,160

.gitignoreD03-May-2024489 5752

AUTHORSD03-May-202481 21

Android.bpD03-May-20247.2 KiB330311

COPYINGD03-May-202444.3 KiB865717

ChangeLogD03-May-2024157 54

METADATAD03-May-2024676 2422

MODULE_LICENSE_LGPLD03-May-20240

Makefile.amD03-May-202475 62

NOTICED03-May-202444.3 KiB865717

OWNERSD03-May-202419 21

READMED03-May-2024987 5034

VERSIOND03-May-202418 32

VERSIONINGD03-May-20249.1 KiB224169

autogen.shD03-May-202485 85

configure.acD03-May-20247 KiB312271

README

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