From patchwork Mon May 18 13:37:00 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thadeu Lima de Souza Cascardo X-Patchwork-Id: 1292535 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49Qg6g6872z9sTY; Mon, 18 May 2020 23:37:15 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1jafx9-0007zP-Nl; Mon, 18 May 2020 13:37:11 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1jafx8-0007yu-19 for kernel-team@lists.ubuntu.com; Mon, 18 May 2020 13:37:10 +0000 Received: from [191.13.27.32] (helo=localhost.localdomain) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1jafx7-00016h-AE for kernel-team@lists.ubuntu.com; Mon, 18 May 2020 13:37:09 +0000 From: Thadeu Lima de Souza Cascardo To: kernel-team@lists.ubuntu.com Subject: [SRU F/G/U 1/3] UBUNTU: [Config]: do not enforce CONFIG_VERSION_SIGNATURE Date: Mon, 18 May 2020 10:37:00 -0300 Message-Id: <20200518133702.226714-2-cascardo@canonical.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200518133702.226714-1-cascardo@canonical.com> References: <20200518133702.226714-1-cascardo@canonical.com> MIME-Version: 1.0 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: "kernel-team" BugLink: https://bugs.launchpad.net/bugs/1879327 This config option is dynamically changed by our build, which would make annotating it require changes coupled with the changelog, making it too cumbersome. Signed-off-by: Thadeu Lima de Souza Cascardo --- debian/scripts/config-check | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/scripts/config-check b/debian/scripts/config-check index 95edd39dc407..b7e37a38c207 100755 --- a/debian/scripts/config-check +++ b/debian/scripts/config-check @@ -135,6 +135,8 @@ for $config (keys %annot) { $check = 0; } if ($check) { + # CONFIG_VERSION_SIGNATURE is dynamically set during the build + next if ($config eq "CONFIG_VERSION_SIGNATURE"); my $is = '-'; $is = $values{$config} if (defined $values{$config});