Go to file
Jaegeuk Kim 4ed75df379 Bug fix: store superblocks with correct offset
There are two superblock writes in mkfs.f2fs.

offset: 0     1024                 4095      5119                 8191
        |------> 1'st superblock ----|--------> 2'nd superblock ----|

Therefore, each superblocks has 1024 byte-size offset.

Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-11-26 19:45:59 +09:00
m4 mkfs: Initial commit for patch v2 series 2012-11-26 19:45:59 +09:00
man mkfs: Initial commit for patch v2 series 2012-11-26 19:45:59 +09:00
mkfs Bug fix: store superblocks with correct offset 2012-11-26 19:45:59 +09:00
.gitignore ignore generated files 2012-11-26 19:45:59 +09:00
AUTHORS mkfs: Initial commit for patch v2 series 2012-11-26 19:45:59 +09:00
ChangeLog mkfs: Initial commit for patch v2 series 2012-11-26 19:45:59 +09:00
configure.ac touch up autotools 2012-11-26 19:45:59 +09:00
COPYING mkfs: Initial commit for patch v2 series 2012-11-26 19:45:59 +09:00
INSTALL mkfs: Initial commit for patch v2 series 2012-11-26 19:45:59 +09:00
Makefile.am mkfs: Initial commit for patch v2 series 2012-11-26 19:45:59 +09:00
NEWS mkfs: Initial commit for patch v2 series 2012-11-26 19:45:59 +09:00
README Enhancement: add uuid 2012-11-26 19:45:59 +09:00

F2FS format utilility
---------------------

To use f2fs filesystem, you should format the storage partition
with this utilility. Otherwise, you cannot mount f2fs.

Before compilation
------------------

Your should install the following packages.
 - libuuid-devel or uuid-dev

Initial compilation
-------------------

Before compilation initially, autoconf/automake tools should be run.

 # autoreconf --install

How to compile
--------------

 # ./configure
 # make

How to run by default
---------------------

 $ ./mkfs.f2fs -l [LABEL] $DEV

For more mkfs options, see man page.