From patchwork Thu Aug 23 17:52:39 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10574501 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 6B6F5920 for ; Thu, 23 Aug 2018 17:52:44 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 559412C31A for ; Thu, 23 Aug 2018 17:52:44 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 48DA02C437; Thu, 23 Aug 2018 17:52:44 +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 E298C2C31A for ; Thu, 23 Aug 2018 17:52:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726642AbeHWVXb (ORCPT ); Thu, 23 Aug 2018 17:23:31 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:53918 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726556AbeHWVXb (ORCPT ); Thu, 23 Aug 2018 17:23:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:References:Cc:To: Subject:Sender:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=pTwZEqK7L4HmY/ielVFKdHJ4fesrN/xdPijmlaOLLCE=; b=aPw7aH/DJqc3HINwbjlvbJAEy m2TQ1mIhXtz/FlMd9yKiEw4jYc6aVk5Gp3OuOAzGr/SD4h/j8m+CA8erIh+cUyjWRDWneRIfAulXg hi5Waq8gjt7YeVrQMcFD/89TEv8VvtHKFJTG2XiVA7fBGWmWN3pfUkOviRRSqPk99Zu+EKgbQ47xq QdoWEJuH2rvr3EnBOf5UTRUX2A4/tx2oENYapZ5s8j9JKRTErpbibjYJvREFMq0MVUPt6L8ZitTrp x1izut6MdobNI/FcFdXoecgLb9hPu9/dMaUrwS5qjTc98OEWxVwLC1/WaoXMZhHotlg89tVNOx3GU 45yyWQ/wQ==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlab) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fstmh-0001yN-Ty; Thu, 23 Aug 2018 17:52:39 +0000 Subject: [PATCH v2] modules_install: make missing $DEPMOD a warning instead of error To: Masahiro Yamada Cc: "H. Nikolaus Schaller" , Lucas De Marchi , Lucas De Marchi , Michal Marek , Jessica Yu , Chih-Wei Huang , stable , Linux Kernel Mailing List , Discussions about the Letux Kernel , linux-kbuild References: <490A46D5-834E-46A9-9106-A31F94344F99@goldelico.com> From: Randy Dunlap Message-ID: <61369202-8425-4cb7-aa9d-b83f15c528e0@infradead.org> Date: Thu, 23 Aug 2018 10:52:39 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: Content-Language: en-US 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: Randy Dunlap When $DEPMOD is not found, only print a warning instead of exiting with an error message and error status. Warning: 'make modules_install' requires /sbin/depmod. Please install it. This is probably in the kmod package. Signed-off-by: Randy Dunlap --- v2: add missing "exit 0" and update the commit message (no Error). scripts/depmod.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- lnx-418.orig/scripts/depmod.sh +++ lnx-418/scripts/depmod.sh @@ -15,9 +15,9 @@ if ! test -r System.map ; then fi if [ -z $(command -v $DEPMOD) ]; then - echo "'make modules_install' requires $DEPMOD. Please install it." >&2 + echo "Warning: 'make modules_install' requires $DEPMOD. Please install it." >&2 echo "This is probably in the kmod package." >&2 - exit 1 + exit 0 fi # older versions of depmod require the version string to start with three