From patchwork Tue May 14 14:58:19 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 243737 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) by ozlabs.org (Postfix) with ESMTP id 7A4042C00BB for ; Wed, 15 May 2013 00:58:38 +1000 (EST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1UcGgP-0000ei-N2; Tue, 14 May 2013 14:58:29 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1UcGgH-0000dv-29 for kernel-team@lists.ubuntu.com; Tue, 14 May 2013 14:58:21 +0000 Received: from cpc3-craw6-2-0-cust180.croy.cable.virginmedia.com ([77.100.248.181] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1UcGgG-0004sz-VW for kernel-team@lists.ubuntu.com; Tue, 14 May 2013 14:58:21 +0000 From: Colin King To: kernel-team@lists.ubuntu.com Subject: [PATCH 2/2][nexus4] UBUNTU: remove CONFIG_NO_ERROR_ON_MISMATCH check Date: Tue, 14 May 2013 15:58:19 +0100 Message-Id: <1368543499-32647-3-git-send-email-colin.king@canonical.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1368543499-32647-1-git-send-email-colin.king@canonical.com> References: <1368543499-32647-1-git-send-email-colin.king@canonical.com> X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.14 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: kernel-team-bounces@lists.ubuntu.com From: Colin Ian King Commit 3f2bc4d6eb5a4fada842462ba22bb6bbb41d00c7 added in a CONFIG_NO_ERROR_ON_MISMATCH which deviates from the normal Ubuntu configs and makes this kernel more pedantic than normal Ubuntu kernels. This breaks DKMS builds such as lttng-modules which may have section mismatch warnings which otherwise are trival issues and won't actually cause breakage. Signed-off-by: Colin Ian King --- scripts/Makefile.modpost | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/Makefile.modpost b/scripts/Makefile.modpost index c1bc458..08dce14 100644 --- a/scripts/Makefile.modpost +++ b/scripts/Makefile.modpost @@ -80,7 +80,6 @@ modpost = scripts/mod/modpost \ $(if $(KBUILD_EXTRA_SYMBOLS), $(patsubst %, -e %,$(KBUILD_EXTRA_SYMBOLS))) \ $(if $(KBUILD_EXTMOD),-o $(modulesymfile)) \ $(if $(CONFIG_DEBUG_SECTION_MISMATCH),,-S) \ - $(if $(CONFIG_NO_ERROR_ON_MISMATCH),,-E) \ $(if $(KBUILD_EXTMOD)$(KBUILD_MODPOST_WARN),-w) \ $(if $(cross_build),-c)