diff options
author | Pierre Lebleu <pme.lebleu@gmail.com> | 2018-05-24 14:20:33 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-12-18 17:22:08 +0100 |
commit | 3af64ddbff9f81fbfba68e2b357473db2fe65ac1 (patch) | |
tree | 2861f2d833ebcac5f007f3a06664bd1552f6130a | |
parent | dfa9d4a70ec887e6f663f71e6a8861d83556435b (diff) | |
download | upstream-3af64ddbff9f81fbfba68e2b357473db2fe65ac1.tar.gz upstream-3af64ddbff9f81fbfba68e2b357473db2fe65ac1.tar.bz2 upstream-3af64ddbff9f81fbfba68e2b357473db2fe65ac1.zip |
fstools: Add the new options available in the menuconfig
Mounting using the zlib compression and mounting with
full access accounting are now available in the
menuconfig.
Signed-off-by: Pierre Lebleu <pme.lebleu@gmail.com>
(backported from e6b8ce4c081b0bdfbbd20477ecef18b285481b07)
-rw-r--r-- | package/system/fstools/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/system/fstools/Makefile b/package/system/fstools/Makefile index 1c71f4b2a8..440f187394 100644 --- a/package/system/fstools/Makefile +++ b/package/system/fstools/Makefile @@ -33,6 +33,8 @@ include $(INCLUDE_DIR)/cmake.mk TARGET_LDFLAGS += $(if $(CONFIG_USE_GLIBC),-lrt) CMAKE_OPTIONS += $(if $(CONFIG_FSTOOLS_UBIFS_EXTROOT),-DCMAKE_UBIFS_EXTROOT=y) +CMAKE_OPTIONS += $(if $(CONFIG_FSTOOLS_OVL_MOUNT_FULL_ACCESS_TIME),-DCMAKE_OVL_MOUNT_FULL_ACCESS_TIME=y) +CMAKE_OPTIONS += $(if $(CONFIG_FSTOOLS_OVL_MOUNT_COMPRESS_ZLIB),-DCMAKE_OVL_MOUNT_COMPRESS_ZLIB=y) define Package/fstools SECTION:=base @@ -50,6 +52,20 @@ define Package/fstools/config default y help This option makes it possible to use extroot functionality if the root filesystem resides on an UBIFS partition + + config FSTOOLS_OVL_MOUNT_FULL_ACCESS_TIME + depends on PACKAGE_fstools + bool "Full access time accounting" + default n + help + This option enables the full access time accounting (warning: it will increase the flash writes). + + config FSTOOLS_OVL_MOUNT_COMPRESS_ZLIB + depends on PACKAGE_fstools + bool "Compress using zlib" + default n + help + This option enables the compression using zlib on the storage device. endef define Package/snapshot-tool |