Home | History | Annotate | only in /external/f2fs-tools
Up to higher level directory
NameDateSize
.gitignore03-Dec-2014361
Android.mk03-Dec-20143.4K
AUTHORS03-Dec-201481
ChangeLog03-Dec-2014157
configure.ac03-Dec-20142.2K
COPYING03-Dec-201444.3K
fsck/03-Dec-2014
include/03-Dec-2014
lib/03-Dec-2014
m4/03-Dec-2014
Makefile.am03-Dec-201475
man/03-Dec-2014
mkfs/03-Dec-2014
MODULE_LICENSE_LGPL03-Dec-20140
NOTICE03-Dec-201444.3K
README03-Dec-2014975
scripts/03-Dec-2014
tools/03-Dec-2014
VERSION03-Dec-201417

README

      1 F2FS format utilility
      2 ---------------------
      3 
      4 To use f2fs filesystem, you should format the storage partition
      5 with this utilility. Otherwise, you cannot mount f2fs.
      6 
      7 Before compilation
      8 ------------------
      9 
     10 Your should install the following packages.
     11  - libuuid-devel or uuid-dev
     12  - pkg-config
     13  - autoconf
     14  - libtool
     15 
     16 Initial compilation
     17 -------------------
     18 
     19 Before compilation initially, autoconf/automake tools should be run.
     20 
     21  # autoreconf --install
     22 
     23 How to compile
     24 --------------
     25 
     26  # ./configure
     27  # make
     28 
     29 How to cross-compile (e.g., for ARM)
     30 ------------------------------------
     31 
     32  1. Add the below line into mkfs/Makefile.am:
     33  mkfs_f2fs_LDFLAGS = -all-static
     34 
     35  2. Add the below line into fsck/Makefile.am:
     36  fsck_f2fs_LDFLAGS = -all-static
     37 
     38  3. then, do:
     39  # LDFLAGS=--static ./configure \
     40 	--host=arm-none-linux-gnueabi --target=arm-none-linux-gnueabi
     41  # make
     42 
     43 How to run by default
     44 ---------------------
     45 
     46  $ ./mkfs.f2fs -l [LABEL] $DEV
     47 
     48 For more mkfs options, see man page.
     49