Received: by 10.192.165.148 with SMTP id m20csp568393imm; Wed, 25 Apr 2018 04:25:08 -0700 (PDT) X-Google-Smtp-Source: AIpwx48JkEHouC/RCGaqEvnruIrPEsk1UauvSb3u0EqpQK+oQNDbT6y8S9i6YAbQS+Aq1ET/w/0T X-Received: by 10.98.147.200 with SMTP id r69mr20432339pfk.59.1524655508233; Wed, 25 Apr 2018 04:25:08 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1524655508; cv=none; d=google.com; s=arc-20160816; b=AhVA0o8Sz/3E28GY1thO22Bx2mwfmUjtaSNLV+LpqLt67G2gA+MlWDphD+yDCdAQo9 CqtE5TvAXxm8rL9oxKg2DDXpmYQ6Oz9szWNBgUl1CP1LpX95gSUXnA2r6nWl6hKjAkPs PQPCHxdKMC52mOzuoRjpF4uBe6NiI89wsVkKWdJU2vzm/RqoAU9VkyZ20cA6vfzpV0qV pnTRbjziMCs25wSJ94np+am/RhwXNyAu9RrHCRAYvPbyGC84/98bCEDWjyIhNDRhQIdJ YHdLVmbkY90Bgyn6bBZjEO5Gwt68hUDRBaRMB5imN6ZmYiHwHTfzM1g2Qkzahtul+56z +GSA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=zevzqNU1hMAsgYiE/Ebq/5RscHMoZiindGQnXuJYKuQ=; b=CTXcRI2CVhKOhBcUJ2svq8oiB66nwueU8Eaw1ltRWDaz/DX/6gGLKQAHMnuyT/amgj //Ofcmm3P19j7VjwyKTdJaOZMYloML21GCrABKRLwc/kHAAQvluJBu7Y3ci9PEo5Dr8t YybW0WYuNDDdOvw5bf2C5Oy1wVbKQfk1gGZGnGqBOuy/iwFwwXNZPJLMOILSZUAXlS54 HGQwqRBCZAQai+k51reb6O6U8S4LEM/hxxctaMg5PKyKzxfV6jCo8/UVBNjgoCdFGgqd LK4Gx6VLeM6y1zoLTv9vk0yNiohZuCEnjrAuqis7P/T+MEmUlDcpWUkkxVrnpKpMyEIJ w0QQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id x19si13591964pgc.261.2018.04.25.04.24.53; Wed, 25 Apr 2018 04:25:08 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753701AbeDYLXl (ORCPT + 99 others); Wed, 25 Apr 2018 07:23:41 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:51786 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753554AbeDYKjK (ORCPT ); Wed, 25 Apr 2018 06:39:10 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 402BE266; Wed, 25 Apr 2018 10:39:09 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, James Hogan , Ralf Baechle , linux-mips@linux-mips.org, Sasha Levin Subject: [PATCH 4.14 055/183] MIPS: Fix clean of vmlinuz.{32,ecoff,bin,srec} Date: Wed, 25 Apr 2018 12:34:35 +0200 Message-Id: <20180425103244.760450636@linuxfoundation.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180425103242.532713678@linuxfoundation.org> References: <20180425103242.532713678@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: James Hogan [ Upstream commit 5f2483eb2423152445b39f2db59d372f523e664e ] Make doesn't expand shell style "vmlinuz.{32,ecoff,bin,srec}" to the 4 separate files, so none of these files get cleaned up by make clean. List the files separately instead. Fixes: ec3352925b74 ("MIPS: Remove all generated vmlinuz* files on "make clean"") Signed-off-by: James Hogan Cc: Ralf Baechle Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/18491/ Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- arch/mips/boot/compressed/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/arch/mips/boot/compressed/Makefile +++ b/arch/mips/boot/compressed/Makefile @@ -133,4 +133,8 @@ vmlinuz.srec: vmlinuz uzImage.bin: vmlinuz.bin FORCE $(call if_changed,uimage,none) -clean-files := $(objtree)/vmlinuz $(objtree)/vmlinuz.{32,ecoff,bin,srec} +clean-files += $(objtree)/vmlinuz +clean-files += $(objtree)/vmlinuz.32 +clean-files += $(objtree)/vmlinuz.ecoff +clean-files += $(objtree)/vmlinuz.bin +clean-files += $(objtree)/vmlinuz.srec