mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-23 10:10:00 +00:00
92a65a44e5
The compile time option BLKDISCARD conflicts with ioctl code for discard. This causes discard to fail with "Info: This device doesn't support TRIM". Rename compile time option to WITH_BLKDISCARD. Signed-off-by: Sankalp Bose <sankalp@tuxera.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
8 lines
272 B
Makefile
8 lines
272 B
Makefile
## Makefile.am
|
|
|
|
AM_CPPFLAGS = ${libuuid_CFLAGS} -I$(top_srcdir)/include
|
|
AM_CFLAGS = -Wall -DWITH_BLKDISCARD
|
|
sbin_PROGRAMS = mkfs.f2fs
|
|
mkfs_f2fs_SOURCES = f2fs_format_main.c f2fs_format.c f2fs_format_utils.c
|
|
mkfs_f2fs_LDADD = ${libuuid_LIBS} $(top_builddir)/lib/libf2fs.la
|