From patchwork Sat Jul 29 14:38:14 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 13333190 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 EE909C001DC for ; Sat, 29 Jul 2023 14:38:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229510AbjG2OiZ (ORCPT ); Sat, 29 Jul 2023 10:38:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60520 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231634AbjG2OiY (ORCPT ); Sat, 29 Jul 2023 10:38:24 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 14D55A8; Sat, 29 Jul 2023 07:38:23 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id A74DB60C68; Sat, 29 Jul 2023 14:38:22 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 79C52C433CB; Sat, 29 Jul 2023 14:38:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1690641502; bh=PpYGpsj8tfX+WSYA1L58aqHkY/e/BiqQbpLrV6MGLQE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mQ7JCIPWJZ7xuTZO2VlsdgACH+6Zwk5PwJgK+otQOnmpzr0MKj5zIyWYt6wxu7Ndn /BG0mM5EIeuL9aWONTLwsE/pjpIWqLjr4BblSZ1foPmi80vlSAgsfb/YTeXTIFr69g iiN250sX8GJUXeUt8h3EBZJ6sY3c8/8dtIwT5xqv9ZrgBRm12HItDkCg16cCg98kfh KVjVTRBCNI/XzDYYYUjXbgLwFGnFObUV23KzxZIDDrHCXpUbzKwRijZYFJUEPM6UnZ 2DnVvwB8gLhUIEWjYap4Bg8v7RwPHKwB1OLAowVt6h6wfY0N3CoL8uvHwY4HkNTh4V LyD4FWt24ogYw== From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Ben Hutchings , Masahiro Yamada , Nathan Chancellor , Nick Desaulniers , Nicolas Schier Subject: [PATCH 2/2] kbuild: deb-pkg: split debian/rules Date: Sat, 29 Jul 2023 23:38:14 +0900 Message-Id: <20230729143814.1509196-2-masahiroy@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230729143814.1509196-1-masahiroy@kernel.org> References: <20230729143814.1509196-1-masahiroy@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org debian/rules is generated by shell scripting, but the escape sequence (\$) is unreadable. debian/rules embeds only two variables (ARCH and KERNELRELEASE). Split them out to debian/rules.vars, and check-in the rest of Makefile code to scripts/package/debian/rules. Signed-off-by: Masahiro Yamada Tested-by: Nicolas Schier Reviewed-by: Nicolas Schier --- scripts/package/debian/rules | 28 ++++++++++++++++++++++++++++ scripts/package/mkdebian | 32 ++++---------------------------- 2 files changed, 32 insertions(+), 28 deletions(-) create mode 100755 scripts/package/debian/rules diff --git a/scripts/package/debian/rules b/scripts/package/debian/rules new file mode 100755 index 000000000000..a4e5ab5abdd9 --- /dev/null +++ b/scripts/package/debian/rules @@ -0,0 +1,28 @@ +#!/usr/bin/make -f +# SPDX-License-Identifier: GPL-2.0-only + +srctree ?= . + +include debian/rules.vars + +.PHONY: binary binary-indep binary-arch +binary: binary-arch binary-indep +binary-indep: build-indep +binary-arch: build-arch + $(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) \ + KERNELRELEASE=$(KERNELRELEASE) \ + run-command KBUILD_RUN_COMMAND=+$(srctree)/scripts/package/builddeb + +.PHONY: build build-indep build-arch +build: build-arch build-indep +build-indep: +build-arch: + $(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) \ + KERNELRELEASE=$(KERNELRELEASE) \ + $(shell $(srctree)/scripts/package/deb-build-option) \ + olddefconfig all + +.PHONY: clean +clean: + rm -rf debian/files debian/linux-* + $(MAKE) -f $(srctree)/Makefile ARCH=${ARCH} clean diff --git a/scripts/package/mkdebian b/scripts/package/mkdebian index 2829f5b8aea6..498b579c6320 100755 --- a/scripts/package/mkdebian +++ b/scripts/package/mkdebian @@ -263,35 +263,11 @@ Description: Linux kernel debugging symbols for $version EOF fi -cat < debian/rules -#!/usr/bin/make -f - -srctree ?= . +cat < debian/rules.vars +ARCH = ${ARCH} KERNELRELEASE = ${KERNELRELEASE} - -.PHONY: clean build build-arch build-indep binary binary-arch binary-indep - -build-indep: -build-arch: - \$(MAKE) -f \$(srctree)/Makefile ARCH=${ARCH} \ - KERNELRELEASE=\$(KERNELRELEASE) \ - \$(shell \$(srctree)/scripts/package/deb-build-option) \ - olddefconfig all - -build: build-arch - -binary-indep: -binary-arch: build-arch - \$(MAKE) -f \$(srctree)/Makefile ARCH=${ARCH} \ - KERNELRELEASE=\$(KERNELRELEASE) \ - run-command KBUILD_RUN_COMMAND=+\$(srctree)/scripts/package/builddeb - -clean: - rm -rf debian/files debian/linux-* - \$(MAKE) -f \$(srctree)/Makefile ARCH=${ARCH} clean - -binary: binary-arch EOF -chmod +x debian/rules + +cp ${srctree}/scripts/package/debian/rules debian/ exit 0