From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-wm1-x344.google.com ([2a00:1450:4864:20::344]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.92) (envelope-from ) id 1jyzyZ-00083d-79 for ptxdist@pengutronix.de; Fri, 24 Jul 2020 17:51:11 +0200 Received: by mail-wm1-x344.google.com with SMTP id j18so8360231wmi.3 for ; Fri, 24 Jul 2020 08:51:11 -0700 (PDT) From: Bruno Thomsen Date: Fri, 24 Jul 2020 17:51:03 +0200 Message-Id: <20200724155103.6374-5-bruno.thomsen@gmail.com> In-Reply-To: <20200724155103.6374-1-bruno.thomsen@gmail.com> References: <20200724155103.6374-1-bruno.thomsen@gmail.com> MIME-Version: 1.0 Subject: [ptxdist] [PATCH v3 5/5] host-squashfs-tools: fix lz4 compression option List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de Cc: Bruno Thomsen , bth@kamstrup.com Conditional select host-lz4 package if lz4 compressions is used by image-root-squashfs and enable support in package. Signed-off-by: Bruno Thomsen --- Changes since version 2: Select HOST_SQUASHFS_TOOLS_LZ4_SUPPORT config. Added HOST_SQUASHFS_TOOLS_LZ4_SUPPORT config. No changes since version 1. platforms/image-root-squashfs.in | 1 + rules/host-squashfs-tools.in | 4 ++++ rules/host-squashfs-tools.make | 1 + 3 files changed, 6 insertions(+) diff --git a/platforms/image-root-squashfs.in b/platforms/image-root-squashfs.in index a6d1d1b44..4e5a75701 100644 --- a/platforms/image-root-squashfs.in +++ b/platforms/image-root-squashfs.in @@ -5,6 +5,7 @@ menuconfig IMAGE_ROOT_SQUASHFS select HOST_GENIMAGE select HOST_SQUASHFS_TOOLS select HOST_SQUASHFS_TOOLS_LZO_SUPPORT if IMAGE_ROOT_SQUASHFS_COMPRESSION_MODE_LZO + select HOST_SQUASHFS_TOOLS_LZ4_SUPPORT if IMAGE_ROOT_SQUASHFS_COMPRESSION_MODE_LZ4 select HOST_SQUASHFS_TOOLS_XZ_SUPPORT if IMAGE_ROOT_SQUASHFS_COMPRESSION_MODE_XZ select HOST_SQUASHFS_TOOLS_ZSTD_SUPPORT if IMAGE_ROOT_SQUASHFS_COMPRESSION_MODE_ZSTD select IMAGE_ROOT_TGZ diff --git a/rules/host-squashfs-tools.in b/rules/host-squashfs-tools.in index 3ba693aaf..b6f3e8f4f 100644 --- a/rules/host-squashfs-tools.in +++ b/rules/host-squashfs-tools.in @@ -4,6 +4,7 @@ config HOST_SQUASHFS_TOOLS tristate select HOST_ZLIB select HOST_LIBLZO if HOST_SQUASHFS_TOOLS_LZO_SUPPORT + select HOST_LZ4 if HOST_SQUASHFS_TOOLS_LZ4_SUPPORT select HOST_XZ if HOST_SQUASHFS_TOOLS_XZ_SUPPORT select HOST_ZSTD if HOST_SQUASHFS_TOOLS_ZSTD_SUPPORT default y if ALLYES @@ -13,6 +14,9 @@ if HOST_SQUASHFS_TOOLS config HOST_SQUASHFS_TOOLS_LZO_SUPPORT bool +config HOST_SQUASHFS_TOOLS_LZ4_SUPPORT + bool + config HOST_SQUASHFS_TOOLS_XZ_SUPPORT bool diff --git a/rules/host-squashfs-tools.make b/rules/host-squashfs-tools.make index f34efb50f..ec04f713c 100644 --- a/rules/host-squashfs-tools.make +++ b/rules/host-squashfs-tools.make @@ -23,6 +23,7 @@ HOST_SQUASHFS_TOOLS_SUBDIR := squashfs-tools HOST_SQUASHFS_TOOLS_MAKE_OPT := \ LZO_SUPPORT=$(call ptx/ifdef, PTXCONF_HOST_SQUASHFS_TOOLS_LZO_SUPPORT,1,0) \ + LZ4_SUPPORT=$(call ptx/ifdef, PTXCONF_HOST_SQUASHFS_TOOLS_LZ4_SUPPORT,1,0) \ XZ_SUPPORT=$(call ptx/ifdef, PTXCONF_HOST_SQUASHFS_TOOLS_XZ_SUPPORT,1,0) \ ZSTD_SUPPORT=$(call ptx/ifdef, PTXCONF_HOST_SQUASHFS_TOOLS_ZSTD_SUPPORT,1,0) -- 2.26.2 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de