fstools: add uci fstab section to conffiles for package block-mount
[openwrt/staging/dedeckeh.git] / package / system / fstools / Makefile
1 #
2 # Copyright (C) 2014-2015 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=fstools
11 PKG_RELEASE:=$(AUTORELEASE)
12
13 PKG_SOURCE_PROTO:=git
14 PKG_SOURCE_URL=$(PROJECT_GIT)/project/fstools.git
15 PKG_MIRROR_HASH:=b0cf3e4dea4f86883409d8597e89aa1d022118bd7087881165fe67622da5a903
16 PKG_SOURCE_DATE:=2022-07-17
17 PKG_SOURCE_VERSION:=ebf7e9028f2facf1a87c56dd261bda82ab9bcc59
18 CMAKE_INSTALL:=1
19
20 PKG_LICENSE:=GPL-2.0
21 PKG_LICENSE_FILES:=
22
23 PKG_USE_MIPS16:=0
24 PKG_FLAGS:=nonshared
25
26 PKG_BUILD_DEPENDS := util-linux
27 PKG_CONFIG_DEPENDS := CONFIG_NAND_SUPPORT CONFIG_FSTOOLS_UBIFS_EXTROOT
28
29 PKG_MAINTAINER:=John Crispin <john@phrozen.org>
30
31 include $(INCLUDE_DIR)/package.mk
32 include $(INCLUDE_DIR)/cmake.mk
33
34 TARGET_LDFLAGS += $(if $(CONFIG_USE_GLIBC),-lrt)
35 CMAKE_OPTIONS += $(if $(CONFIG_FSTOOLS_UBIFS_EXTROOT),-DCMAKE_UBIFS_EXTROOT=y)
36 CMAKE_OPTIONS += $(if $(CONFIG_FSTOOLS_OVL_MOUNT_FULL_ACCESS_TIME),-DCMAKE_OVL_MOUNT_FULL_ACCESS_TIME=y)
37 CMAKE_OPTIONS += $(if $(CONFIG_FSTOOLS_OVL_MOUNT_COMPRESS_ZLIB),-DCMAKE_OVL_MOUNT_COMPRESS_ZLIB=y)
38
39 define Package/fstools
40 SECTION:=base
41 CATEGORY:=Base system
42 DEPENDS:=+ubox +USE_GLIBC:librt +NAND_SUPPORT:ubi-utils
43 TITLE:=OpenWrt filesystem tools
44 MENU:=1
45 endef
46
47 define Package/fstools/config
48 config FSTOOLS_UBIFS_EXTROOT
49 depends on PACKAGE_fstools
50 depends on NAND_SUPPORT
51 bool "Support extroot functionality with UBIFS"
52 default y
53 help
54 This option makes it possible to use extroot functionality if the root filesystem resides on an UBIFS partition
55
56 config FSTOOLS_OVL_MOUNT_FULL_ACCESS_TIME
57 depends on PACKAGE_fstools
58 bool "Full access time accounting"
59 default n
60 help
61 This option enables the full access time accounting (warning: it will increase the flash writes).
62
63 config FSTOOLS_OVL_MOUNT_COMPRESS_ZLIB
64 depends on PACKAGE_fstools
65 bool "Compress using zlib"
66 default n
67 help
68 This option enables the compression using zlib on the storage device.
69 endef
70
71 define Package/snapshot-tool
72 SECTION:=base
73 CATEGORY:=Base system
74 TITLE:=rootfs snapshoting tool
75 DEPENDS:=+libubox +fstools
76 endef
77
78 define Package/block-mount/conffiles
79 /etc/config/fstab
80 endef
81
82 define Package/block-mount
83 SECTION:=base
84 CATEGORY:=Base system
85 TITLE:=Block device mounting and checking
86 DEPENDS:=+ubox +libubox +libuci +libblobmsg-json +libjson-c
87 endef
88
89 define Package/blockd
90 SECTION:=base
91 CATEGORY:=Base system
92 TITLE:=Block device automounting
93 DEPENDS:=+block-mount +fstools +libubus +kmod-fs-autofs4 +libblobmsg-json +libjson-c
94 endef
95
96 define Package/fstools/install
97 $(INSTALL_DIR) $(1)/sbin $(1)/lib
98
99 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{mount_root,jffs2reset} $(1)/sbin/
100 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libfstools.so $(1)/lib/
101 $(LN) jffs2reset $(1)/sbin/jffs2mark
102 endef
103
104 define Package/snapshot-tool/install
105 $(INSTALL_DIR) $(1)/sbin
106
107 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/snapshot_tool $(1)/sbin/
108 $(INSTALL_BIN) ./files/snapshot $(1)/sbin/
109 endef
110
111 define Package/block-mount/install
112 $(INSTALL_DIR) $(1)/sbin $(1)/lib $(1)/usr/sbin $(1)/etc/hotplug.d/block $(1)/etc/init.d/ $(1)/etc/uci-defaults/
113
114 $(INSTALL_BIN) ./files/fstab.init $(1)/etc/init.d/fstab
115 $(INSTALL_CONF) ./files/fstab.default $(1)/etc/uci-defaults/10-fstab
116 $(INSTALL_CONF) ./files/mount.hotplug $(1)/etc/hotplug.d/block/10-mount
117 $(INSTALL_CONF) ./files/media-change.hotplug $(1)/etc/hotplug.d/block/00-media-change
118
119 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/block $(1)/sbin/
120 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libblkid-tiny.so $(1)/lib/
121 $(LN) ../../sbin/block $(1)/usr/sbin/swapon
122 $(LN) ../../sbin/block $(1)/usr/sbin/swapoff
123
124 endef
125
126 define Package/blockd/install
127 $(INSTALL_DIR) $(1)/sbin $(1)/etc/init.d/
128 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/blockd $(1)/sbin/
129 $(INSTALL_BIN) ./files/blockd.init $(1)/etc/init.d/blockd
130 endef
131
132 define Build/InstallDev
133 $(INSTALL_DIR) $(1)/usr/include
134 $(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/
135 $(INSTALL_DIR) $(1)/usr/lib/
136 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libubi-utils.a $(1)/usr/lib/
137 endef
138
139 $(eval $(call BuildPackage,fstools))
140 $(eval $(call BuildPackage,snapshot-tool))
141 $(eval $(call BuildPackage,block-mount))
142 $(eval $(call BuildPackage,blockd))