From patchwork Wed Aug 8 04:06: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: 10559495 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id F1B0113AC for ; Wed, 8 Aug 2018 04:09:16 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D55CE2A403 for ; Wed, 8 Aug 2018 04:09:16 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C92712A594; Wed, 8 Aug 2018 04:09:16 +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=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,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 32EB12A403 for ; Wed, 8 Aug 2018 04:09:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726447AbeHHG0y (ORCPT ); Wed, 8 Aug 2018 02:26:54 -0400 Received: from conuserg-08.nifty.com ([210.131.2.75]:57737 "EHLO conuserg-08.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726373AbeHHG0x (ORCPT ); Wed, 8 Aug 2018 02:26:53 -0400 Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-08.nifty.com with ESMTP id w78475Hh002928; Wed, 8 Aug 2018 13:07:05 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com w78475Hh002928 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1533701226; bh=+aEN0ZYITifTQKPqjWdlYZaoxzIXggS7GbtP0zYZY4g=; h=From:To:Cc:Subject:Date:From; b=iL9+KKIB04++aI7aXh6mh1oL1PIYOk03PhK3y24oWNkRZh/NwHDP7BbQ5uAZDvdI4 RnUoB3ysWZRgf9PRIPCo0hW5IlYVeNgLkJi0Iwkv86Cx4K7m864+tULLAFoJpy+RPI 23xH5qRvN0cMyaRuRjdDnKb5zpsRl6Ud7q76wHZTo4uaInoUCxPJVJuQQX9w/OeOh1 T7Mt98HMobwd/vDbJ8mmIQDd0SE3kI2c1+vkBtlReZ+1tmL94KrlBojkdZeq8DgZGR Ql3RYnbOAcn9KlbNU3dDBGuC8b1gMYvuGmcxyM6+ltvzh1AhEkXFpPSTJB0uxjltMQ ptU3E/pXwg3uw== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Rob Landley , Ulf Magnusson , Jiri Kosina , Kees Cook , Masahiro Yamada , Randy Dunlap , Nicholas Piggin , Dominik Brodowski , linux-kernel@vger.kernel.org, Thomas Gleixner , Frederic Weisbecker , "Peter Zijlstra (Intel)" , Ingo Molnar , Mathieu Desnoyers Subject: [RESEND PATCH] init/Kconfig: Use short unix-style option instead of --longname Date: Wed, 8 Aug 2018 13:06:43 +0900 Message-Id: <1533701203-31019-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 From: Rob Landley Avoids warning messages with the latest release of toybox, which never bothered to implement the --longopts nothing was using. Signed-off-by: Rob Landley Signed-off-by: Masahiro Yamada --- This was sent to the trivial ML some time ago, but not applied yet. I will apply this to kbuild tree for v4.19 [yamada.masahiro@socionext.com Move the patch description under '---' to the commit log body. ] init/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init/Kconfig b/init/Kconfig index 794a1b1..944b1fd 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -2,9 +2,9 @@ config DEFCONFIG_LIST string depends on !UML option defconfig_list - default "/lib/modules/$(shell,uname --release)/.config" + default "/lib/modules/$(shell,uname -r)/.config" default "/etc/kernel-config" - default "/boot/config-$(shell,uname --release)" + default "/boot/config-$(shell,uname -r)" default ARCH_DEFCONFIG default "arch/$(ARCH)/defconfig"