From patchwork Mon Oct 29 15:41:28 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 990327 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=socionext.com Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b="tupr6Qt1"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 42kJpH00vQz9s3Z for ; Tue, 30 Oct 2018 02:45:26 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727552AbeJ3Aee (ORCPT ); Mon, 29 Oct 2018 20:34:34 -0400 Received: from condef-05.nifty.com ([202.248.20.70]:25110 "EHLO condef-05.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727456AbeJ3Aee (ORCPT ); Mon, 29 Oct 2018 20:34:34 -0400 Received: from conuserg-10.nifty.com ([10.126.8.73])by condef-05.nifty.com with ESMTP id w9TFgJBP028068; Tue, 30 Oct 2018 00:42:22 +0900 Received: from grover.tkatk1.zaq.ne.jp (zaqdadce369.zaq.ne.jp [218.220.227.105]) (authenticated) by conuserg-10.nifty.com with ESMTP id w9TFfWK3013655; Tue, 30 Oct 2018 00:41:32 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-10.nifty.com w9TFfWK3013655 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1540827693; bh=xMpzX31pEjrG2cKDEOQ6VMPhjxV09pqI6xMEUNfOb3g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tupr6Qt1QCw1wOXqjlWl25fpuBj00y5CyVpZKIqxm2f4jGiRGSBKZytAI1PKf0dlP jWVNBstDEYw8rvibX6ccSLCcOQA4B+yYEWVAioi3X5RBACzoVoib7B7zIx8yrLVCWZ kG78SFpqSWA/tw1AKo6zNoKvXYK+1S+K9JVw1jxwPG8l1NqX9a3W57E3Q2aKPKqXTJ W3F7zWBYjTifDgtToJ4KyRREZOw4/6nyFg9ijp5xiRgr2wMuW2tmEVhgRsMwL1xiBd J0BQ/OjHmxnuz//AbYAN4bLzBlJ4HVKiLU5+3IdpTEBi6cEsLN++a5zbf12FVyViCj Oq+JCTVTU10cQ== X-Nifty-SrcIP: [218.220.227.105] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Masahiro Yamada , "David S. Miller" , linux-doc@vger.kernel.org, netdev@vger.kernel.org, Jonathan Corbet , Jeff Kirsher , intel-wired-lan@lists.osuosl.org, linux-kernel@vger.kernel.org Subject: [PATCH 2/2] kconfig: remove silentoldconfig target Date: Tue, 30 Oct 2018 00:41:28 +0900 Message-Id: <1540827688-15999-2-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1540827688-15999-1-git-send-email-yamada.masahiro@socionext.com> References: <1540827688-15999-1-git-send-email-yamada.masahiro@socionext.com> Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org As commit 911a91c39cab ("kconfig: rename silentoldconfig to syncconfig") announced, it is time for the removal. Signed-off-by: Masahiro Yamada Acked-by: Jeff Kirsher --- Documentation/networking/ice.rst | 2 +- scripts/kconfig/Makefile | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/Documentation/networking/ice.rst b/Documentation/networking/ice.rst index 1e4948c..4d118b8 100644 --- a/Documentation/networking/ice.rst +++ b/Documentation/networking/ice.rst @@ -20,7 +20,7 @@ Enabling the driver The driver is enabled via the standard kernel configuration system, using the make command:: - make oldconfig/silentoldconfig/menuconfig/etc. + make oldconfig/menuconfig/etc. The driver is located in the menu structure at: diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 5d37a60..63b6092 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -68,14 +68,7 @@ PHONY += $(simple-targets) $(simple-targets): $(obj)/conf $< $(silent) --$@ $(Kconfig) -PHONY += silentoldconfig savedefconfig defconfig - -# We do not expect manual invokcation of "silentoldcofig" (or "syncconfig"). -silentoldconfig: syncconfig - @echo " WARNING: \"silentoldconfig\" has been renamed to \"syncconfig\"" - @echo " and is now an internal implementation detail." - @echo " What you want is probably \"oldconfig\"." - @echo " \"silentoldconfig\" will be removed after Linux 4.19" +PHONY += savedefconfig defconfig savedefconfig: $(obj)/conf $< $(silent) --$@=defconfig $(Kconfig)