From patchwork Thu Jan 18 04:13:43 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 10172375 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id B344C602DC for ; Thu, 18 Jan 2018 04:14:50 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9C6ED205FC for ; Thu, 18 Jan 2018 04:14:50 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8E54020602; Thu, 18 Jan 2018 04:14:50 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 029B4205FC for ; Thu, 18 Jan 2018 04:14:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753332AbeAREOt (ORCPT ); Wed, 17 Jan 2018 23:14:49 -0500 Received: from conuserg-07.nifty.com ([210.131.2.74]:58742 "EHLO conuserg-07.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752955AbeAREOt (ORCPT ); Wed, 17 Jan 2018 23:14:49 -0500 Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-07.nifty.com with ESMTP id w0I4DlNo016650; Thu, 18 Jan 2018 13:13:47 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com w0I4DlNo016650 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1516248828; bh=HykSTsUoN1sergDC76Kgp8WMmuZ64r9WNcExHL5YEAI=; h=From:To:Cc:Subject:Date:From; b=p2j4p0UsN7220hyH7BNuEaZBKe3r6nxty6Oi01dsFgESwlRKVJpC6yAgTy5rLaMxA dy6I3OhO84G/IhaHZHbt29t1SFymJTaicBqKDbkMNXiiaNnS8SzL40FxDizpQwy9ZZ zQPi8q0+He7vE16BoPdqGlzLttQd+zGtXQHEPz41353CXpFCHDyHNbVuMQ4wm01E+9 ffvZ7C+5gPEA/KvMoIouh9sQJsuLLZ9WoxnB5uUrAZQtC1aC95VHB+nc5MwmardSjD bVA1k9I4QAwWv66x6wNNDagas+G63twJhaYu243uOqdBA0S8zdV4lUBPYagPotCwfd b5bjL9GRQU+tQ== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Sam Ravnborg , Michal Marek , Ulf Magnusson , Marc Herbert , Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH] kconfig: announce removal of oldnoconfig if used Date: Thu, 18 Jan 2018 13:13:43 +0900 Message-Id: <1516248823-22790-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The 'oldnoconfig' is really confusing due to its counter-intuitive name. It was renamed by commit fb16d8912db5 ("kconfig: replace 'oldnoconfig' with 'olddefconfig', and keep the old name as an alias"). The 'oldnoconfig' has been kept as an alias for enough period of time, and finally I am planning to remove it. Meanwhile, the following message will be displayed if oldnoconfig is used. WARNING: "oldnoconfig" target will be removed after Linux 4.19 Please use "olddefconfig" instead. Signed-off-by: Masahiro Yamada Reviewed-by: Ulf Magnusson --- scripts/kconfig/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 61cdc5e..9a349bd 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -92,6 +92,8 @@ PHONY += oldnoconfig savedefconfig defconfig # on its behavior (sets new symbols to their default value but not 'n') with the # counter-intuitive name. oldnoconfig: olddefconfig + @echo " WARNING: \"oldnoconfig\" target will be removed after Linux 4.19" + @echo " Please use \"olddefconfig\" instead." savedefconfig: $(obj)/conf $< $(silent) --$@=defconfig $(Kconfig)