Initial commit
This commit is contained in:
98
package/utils/f2fs-tools/Makefile
Normal file
98
package/utils/f2fs-tools/Makefile
Normal file
@@ -0,0 +1,98 @@
|
||||
#
|
||||
# Copyright (C) 2014 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=f2fs-tools
|
||||
PKG_VERSION:=1.12.0
|
||||
PKG_RELEASE:=3
|
||||
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/
|
||||
PKG_HASH:=e2124e4dffaba865d41495d817bcb924d096adaec67ff777b8c7da99aa13f696
|
||||
|
||||
PKG_FIXUP:=autoreconf
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/f2fs-tools/Default
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
SUBMENU:=Filesystem
|
||||
DEPENDS:=+libf2fs
|
||||
URL:=http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git
|
||||
endef
|
||||
|
||||
define Package/mkf2fs
|
||||
$(Package/f2fs-tools/Default)
|
||||
TITLE:=Utility for creating a Flash-Friendly File System (F2FS)
|
||||
endef
|
||||
|
||||
define Package/f2fsck
|
||||
$(Package/f2fs-tools/Default)
|
||||
TITLE:=Utility for checking/repairing a Flash-Friendly File System (F2FS)
|
||||
endef
|
||||
|
||||
define Package/f2fs-tools
|
||||
$(Package/f2fs-tools/Default)
|
||||
TITLE:=Tools for Flash-Friendly File System (F2FS)
|
||||
DEPENDS += +mkf2fs +f2fsck
|
||||
endef
|
||||
|
||||
define Package/libf2fs
|
||||
SECTION:=libs
|
||||
CATEGORY:=Libraries
|
||||
TITLE:=Library for Flash-Friendly File System (F2FS) tools
|
||||
DEPENDS:=+libuuid
|
||||
ABI_VERSION:=6
|
||||
endef
|
||||
|
||||
CONFIGURE_ARGS += \
|
||||
--without-selinux \
|
||||
--without-blkid
|
||||
|
||||
CONFIGURE_VARS += \
|
||||
ac_cv_file__git=no
|
||||
|
||||
define Package/libf2fs/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/libf2fs.so.* $(1)/usr/lib/
|
||||
endef
|
||||
|
||||
define Package/mkf2fs/install
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mkfs.f2fs $(1)/usr/sbin
|
||||
endef
|
||||
|
||||
define Package/f2fsck/install
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/fsck.f2fs $(1)/usr/sbin
|
||||
ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/defrag.f2fs
|
||||
ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/dump.f2fs
|
||||
ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/sload.f2fs
|
||||
ln -s /usr/sbin/fsck.f2fs $(1)/usr/sbin/resize.f2fs
|
||||
endef
|
||||
|
||||
define Package/f2fs-tools/install
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/f2fstat $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/fibmap.f2fs $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/parse.f2fs $(1)/usr/sbin
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,libf2fs))
|
||||
$(eval $(call BuildPackage,mkf2fs))
|
||||
$(eval $(call BuildPackage,f2fsck))
|
||||
$(eval $(call BuildPackage,f2fs-tools))
|
||||
@@ -0,0 +1,35 @@
|
||||
From 46772bbf0d978512423923da461ceb6b6e791c91 Mon Sep 17 00:00:00 2001
|
||||
From: Rosen Penev <rosenp@gmail.com>
|
||||
Date: Fri, 7 Dec 2018 17:39:03 -0800
|
||||
Subject: [PATCH] fsck: Fix big endian platforms
|
||||
|
||||
Since "fsck.f2fs: integrate sanity_check_inode to __check_inode_mode",
|
||||
big endian platforms have been broken due to an endianness bug.
|
||||
|
||||
More info: https://github.com/openwrt/openwrt/pull/1575
|
||||
|
||||
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
||||
---
|
||||
fsck/fsck.c | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
--- a/fsck/fsck.c
|
||||
+++ b/fsck/fsck.c
|
||||
@@ -339,7 +339,7 @@ out:
|
||||
return ret;
|
||||
}
|
||||
|
||||
-static int __check_inode_mode(u32 nid, enum FILE_TYPE ftype, u32 mode)
|
||||
+static int __check_inode_mode(u32 nid, enum FILE_TYPE ftype, u16 mode)
|
||||
{
|
||||
if (ftype >= F2FS_FT_MAX)
|
||||
return 0;
|
||||
@@ -457,7 +457,7 @@ static int sanity_check_nid(struct f2fs_
|
||||
return 0;
|
||||
|
||||
if (ntype == TYPE_INODE &&
|
||||
- __check_inode_mode(nid, ftype, le32_to_cpu(node_blk->i.i_mode)))
|
||||
+ __check_inode_mode(nid, ftype, le16_to_cpu(node_blk->i.i_mode)))
|
||||
return -EINVAL;
|
||||
|
||||
/* workaround to fix later */
|
||||
@@ -0,0 +1,24 @@
|
||||
From a1241763f50d20efc42910e922b9c8845814f024 Mon Sep 17 00:00:00 2001
|
||||
From: Chao Yu <yuchao0@huawei.com>
|
||||
Date: Sun, 9 Dec 2018 19:41:52 -0800
|
||||
Subject: [PATCH] dump.f2fs: fix incorrect endian conversion
|
||||
|
||||
f2fs_inode.i_mode is variable of __le16 type, during endian converison,
|
||||
it should to use le16_to_cpu instead of le32_to_cpu, fix it.
|
||||
|
||||
Signed-off-by: Chao Yu <yuchao0@huawei.com>
|
||||
---
|
||||
fsck/dump.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
--- a/fsck/dump.c
|
||||
+++ b/fsck/dump.c
|
||||
@@ -407,7 +407,7 @@ static void dump_file(struct f2fs_sb_inf
|
||||
struct f2fs_node *node_blk, int force)
|
||||
{
|
||||
struct f2fs_inode *inode = &node_blk->i;
|
||||
- u32 imode = le32_to_cpu(inode->i_mode);
|
||||
+ u32 imode = le16_to_cpu(inode->i_mode);
|
||||
u32 namelen = le32_to_cpu(inode->i_namelen);
|
||||
char name[F2FS_NAME_LEN + 1] = {0};
|
||||
char path[1024] = {0};
|
||||
Reference in New Issue
Block a user