From patchwork Sun May 21 13:23:36 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 13249408 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DE695C77B73 for ; Sun, 21 May 2023 13:36:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230251AbjEUNgJ (ORCPT ); Sun, 21 May 2023 09:36:09 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36378 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230298AbjEUN2I (ORCPT ); Sun, 21 May 2023 09:28:08 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 15C10FD; Sun, 21 May 2023 06:24:45 -0700 (PDT) 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 dfw.source.kernel.org (Postfix) with ESMTPS id 9DFB460ACA; Sun, 21 May 2023 13:24:44 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D9DAAC4339B; Sun, 21 May 2023 13:24:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1684675484; bh=VfAYprLgD0rcez7J0B6F6vcJGPi6jx1GfUu+qYJ2n/4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZUXBYSgs+j1rQeijprLejFg690S0YKQjjSOjy6VIig8y2SSrk4O3uGRuyOttwBWN4 vN5l3iZyIP1x8SSu0u5i0DlLXKP4oJFWDNDZ+7KexwLfaBjr4r00GpMD5sb87lbl9a OC/BOroK6vgM6cnC5/MfO0x+CFImFY2FGkPbxWIDMi1k0Dk2hHZ7zHTLfktH0ipvbp COML9KaYpbnf4oc2l/uqnRUBKHZUlVvjLFLetL5NeVunhBqnl0lSL4T7IGWOe+xmU6 zLOSmJRlGyanca4PE7TP3dNIG0u/RySYVQTZ4+jNASfjIO/szdrlJqzMnJTtQMpG/X Oi/bEIUKZfMGA== From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Masahiro Yamada , Jonathan Corbet , linux-doc@vger.kernel.org Subject: [PATCH 2/2] doc: Add tar requirement to changes.rst Date: Sun, 21 May 2023 22:23:36 +0900 Message-Id: <20230521132336.1279523-2-masahiroy@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230521132336.1279523-1-masahiroy@kernel.org> References: <20230521132336.1279523-1-masahiroy@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org tar is used to build the kernel with CONFIG_IKHEADERS. GNU tar 1.28 or later is required. Signed-off-by: Masahiro Yamada Reviewed-by: Nicolas Schier --- Documentation/process/changes.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Documentation/process/changes.rst b/Documentation/process/changes.rst index a9ef00509c9b..3c0074214d75 100644 --- a/Documentation/process/changes.rst +++ b/Documentation/process/changes.rst @@ -60,6 +60,7 @@ openssl & libcrypto 1.0.0 openssl version bc 1.06.95 bc --version Sphinx\ [#f1]_ 1.7 sphinx-build --version cpio any cpio --version +GNU tar 1.28 tar --version gtags (optional) 6.6.5 gtags --version ====================== =============== ======================================== @@ -175,6 +176,12 @@ You will need openssl to build kernels 3.7 and higher if module signing is enabled. You will also need openssl development packages to build kernels 4.3 and higher. +Tar +--- + +GNU tar is needed if you want to enable access to the kernel headers via sysfs +(CONFIG_IKHEADERS). + gtags / GNU GLOBAL (optional) -----------------------------