summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rules/util-linux-ng.in10
-rw-r--r--rules/util-linux-ng.make3
2 files changed, 13 insertions, 0 deletions
diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
index ae8c1ef71..ad2ad5a2d 100644
--- a/rules/util-linux-ng.in
+++ b/rules/util-linux-ng.in
@@ -216,6 +216,16 @@ config UTIL_LINUX_NG_FSCK
comment "BusyBox' fsck is selected!"
depends on BUSYBOX_FSCK
+config UTIL_LINUX_NG_FSFREEZE
+ bool
+ prompt "fsfreeze"
+ depends on !BUSYBOX_FSFREEZE || ALLYES
+ help
+ fsfreeze suspends or resumes access to a filesystem.
+
+comment "BusyBox' fsfreeze is selected!"
+ depends on BUSYBOX_FSFREEZE
+
config UTIL_LINUX_NG_FSTRIM
bool
prompt "fstrim"
diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
index 99c4da88c..1d528fa4c 100644
--- a/rules/util-linux-ng.make
+++ b/rules/util-linux-ng.make
@@ -237,6 +237,9 @@ endif
ifdef PTXCONF_UTIL_LINUX_NG_FSCK
@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/sbin/fsck)
endif
+ifdef PTXCONF_UTIL_LINUX_NG_FSFREEZE
+ @$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/sbin/fsfreeze)
+endif
ifdef PTXCONF_UTIL_LINUX_NG_FSTRIM
@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/sbin/fstrim)
endif