From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 98470C433EF for ; Mon, 23 May 2022 20:51:01 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 5B61683DBF; Mon, 23 May 2022 22:50:58 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="XZ06BSAl"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 189E180167; Mon, 23 May 2022 22:50:57 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 9425280167 for ; Mon, 23 May 2022 22:50:54 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 2E3A7B8128F for ; Mon, 23 May 2022 20:50:54 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9BD71C385A9 for ; Mon, 23 May 2022 20:50:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1653339052; bh=zHKhx4ZqyBqrYP8kIIk3z58kHOH9teGzuUzi6LyGq1c=; h=From:To:Subject:Date:From; b=XZ06BSAluMhyZreM6jF7BGrKU82JG7OYq92hTXh9no+B+BzRq9VHP5a3REhBFVdNQ R45I8+cQkm3NssE4nx3zh2Stt8Js6u/2Vm2N043hLq2UwtQkf/haVvG2KFydBstFuB 5GUx7U+h8LPHCoH83cjC44CDs4InvStk1rn56xIwVVBVIL5h/JjmyjUeQ9UT1FG78T mxx+v3rmbNMWgll014hp8asI7xO6h250VGQm08tYqqJMLHb2fmBJVcPowpqWoGgrwZ QfKyU0GcXc8cIfXQ9Lk7H/FRLxqBjViG07KuUyZty5KNk0y1RQ67P/HIH/knRC4oO2 U8WhkQ34Ck/Wg== Received: by pali.im (Postfix) id B1C18A43; Mon, 23 May 2022 22:50:49 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: u-boot@lists.denx.de Subject: [PATCH] ubifs: Add missing dependency on GZIP Date: Mon, 23 May 2022 22:50:36 +0200 Message-Id: <20220523205036.27936-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean GZIP option can be manually de-selected when UBIFS is enabled. This cause following compile error because ubifs calls gzip functions. /tmp/ccxVrh2c.ltrans1.ltrans.o: in function `gzip_decompress.lto_priv.566': :(.text+0x768): undefined reference to `zunzip' collect2: error: ld returned 1 exit status make: *** [Makefile:1813: u-boot] Error 1 So add missing dependency on GZIP. Signed-off-by: Pali Rohár --- cmd/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/Kconfig b/cmd/Kconfig index 69c1814d24af..50e60fd4d5b6 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2562,6 +2562,7 @@ config CMD_UBIFS depends on CMD_UBI default y if CMD_UBI select LZO + select GZIP help UBIFS is a file system for flash devices which works on top of UBI. -- 2.20.1