Name Date Size #Lines LOC

..--

.github/workflows/H25-Apr-2025-7165

fsck/H25-Apr-2025-20,70116,534

include/H25-Apr-2025-2,2981,703

lib/H25-Apr-2025-8,0826,970

m4/H25-Apr-2025-31

man/H25-Apr-2025-1,2591,218

mkfs/H25-Apr-2025-2,6822,127

scripts/H25-Apr-2025-343278

tools/H25-Apr-2025-4,4023,684

.gitignoreH A D25-Apr-2025489 5752

AUTHORSH A D25-Apr-202581 21

Android.bpH A D25-Apr-20258.6 KiB412385

COPYINGH A D25-Apr-202544.3 KiB865717

ChangeLogH A D25-Apr-2025157 54

METADATAH A D25-Apr-2025670 2119

MODULE_LICENSE_LGPLHD25-Apr-20250

Makefile.amH A D25-Apr-202575 62

NOTICEH A D25-Apr-202544.3 KiB865717

OWNERSH A D25-Apr-202519 21

READMEH A D25-Apr-2025987 5034

VERSIONH A D25-Apr-202518 32

VERSIONINGH A D25-Apr-20259.1 KiB224169

autogen.shH A D25-Apr-202585 85

configure.acH A D25-Apr-20257 KiB314273

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