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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B9EAEC38A2D for ; Fri, 21 Oct 2022 20:11:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230006AbiJUULf (ORCPT ); Fri, 21 Oct 2022 16:11:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44096 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229770AbiJUULc (ORCPT ); Fri, 21 Oct 2022 16:11:32 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 20DD543175; Fri, 21 Oct 2022 13:11:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: Content-Type:In-Reply-To:From:References:Cc:To:Subject:MIME-Version:Date: Message-ID:Sender:Reply-To:Content-ID:Content-Description; bh=JphNfAA2iHfPPFqLGJ1P7kcxgaF4AXUeuQ4B56yMLX8=; b=kXgQ2hifegqvU+i7pUOpYoI7bc 4F2y/WzAluh3WgqorcWcRrHULr96NkYXt+ttayyvJeo8lh7PK07x96H2z4bj2kFAfTbAK8ub4u/CQ 1h/gcPu7ETOPAgZ077LqRE7y/xcXLflelt9y4pI7iydkdD+947IyQwsopXWuJPHxXoiPKi3DtxRWq mNR3aBK5G9ElJMbi80+mps5/ElRu24FttQpOQpahSls+plW9BjCQ9LBVdDwhzEt3ZZRw43ydKyYrx b7G5AuFA/BhbTXybYJ/wMG7Flcmz/X5jwLUgCsM9a2ckO02kS5HqC7NzbHiMdgZXCJFSgUIJWaI7o Zscnyv4Q==; Received: from [2601:1c2:d80:3110::a2e7] by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1olyMU-009jrY-7z; Fri, 21 Oct 2022 20:11:22 +0000 Message-ID: <55dd0e6d-3d52-fce9-015f-6ebb75cf826e@infradead.org> Date: Fri, 21 Oct 2022 13:11:18 -0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.3.1 Subject: Re: [PATCH 1/2] package: add tar development package for 3rd party modules Content-Language: en-US To: Federico Vaga , Masahiro Yamada , Michal Marek , Nick Desaulniers Cc: linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org References: <20221021101452.1367745-1-federico.vaga@cern.ch> <20221021101452.1367745-2-federico.vaga@cern.ch> From: Randy Dunlap In-Reply-To: <20221021101452.1367745-2-federico.vaga@cern.ch> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi-- On 10/21/22 03:14, Federico Vaga wrote: > Most, if not all, Linux distributions provides a Linux development > package which purpose is to support the building of out-of-tree modules > without providing the entire source tree. > > What ends up in this development directory is a mixture of source > files (mainly headers) and generated ones (headers, and tools produced > by `make modules_prepare`). > > This patch is an attempt to generate a tarball archive containing all > required files to build external modules. It could be than reused by > packagers. > > Signed-off-by: Federico Vaga > --- > Makefile | 2 +- > scripts/Makefile.package | 13 +++ > scripts/package/buildtar-devel | 207 +++++++++++++++++++++++++++++++++ > 3 files changed, 221 insertions(+), 1 deletion(-) > create mode 100644 scripts/package/buildtar-devel Is there a patch 2/2? I don't see it anywhere. thanks. -- ~Randy