From patchwork Tue Apr 5 02:08:26 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 65037 Delivered-To: patch@linaro.org Received: by 10.112.199.169 with SMTP id jl9csp200931lbc; Mon, 4 Apr 2016 19:09:05 -0700 (PDT) X-Received: by 10.66.255.65 with SMTP id ao1mr34703055pad.38.1459822145428; Mon, 04 Apr 2016 19:09:05 -0700 (PDT) Return-Path: Received: from bombadil.infradead.org (bombadil.infradead.org. [2001:1868:205::9]) by mx.google.com with ESMTPS id 3si45527246pfr.50.2016.04.04.19.09.05 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 04 Apr 2016 19:09:05 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-arm-kernel-bounces+patch=linaro.org@lists.infradead.org designates 2001:1868:205::9 as permitted sender) client-ip=2001:1868:205::9; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@nifty.com; spf=pass (google.com: best guess record for domain of linux-arm-kernel-bounces+patch=linaro.org@lists.infradead.org designates 2001:1868:205::9 as permitted sender) smtp.mailfrom=linux-arm-kernel-bounces+patch=linaro.org@lists.infradead.org Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1anGPe-0008GR-8I; Tue, 05 Apr 2016 02:08:14 +0000 Received: from conuserg-12.nifty.com ([210.131.2.79]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1anGPa-000887-Er for linux-arm-kernel@lists.infradead.org; Tue, 05 Apr 2016 02:08:11 +0000 Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-12.nifty.com with ESMTP id u3527UIe023438; Tue, 5 Apr 2016 11:07:30 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-12.nifty.com u3527UIe023438 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1459822051; bh=Z4wIMDTdjlZsobXyjpMbuvKmGqfDPBwqV47/7zCzo1c=; h=From:To:Cc:Subject:Date:From; b=0jfqAgqSWg17Z8ObgjUYgDLAKTSaWgiBx3VGs3nJke44Amdqb2l/O7ii3bo++diE9 x5qaHJfnR0BQ7YA+t+BFI89l+BXAooSplXnLfnJbsBPBP0SIYbIFUg4tvoaJA3hcC/ glONmRKm7VDadId/Fa5nFKG43lwAyNj7vtq/1c7InfTrN0SJcrwUFT/qXK/R+v58Yk XdDwsMN/klfi0oblaQFOA9XfH0Am+pz4fxxHb/P7sGIHj5JqahxtH7mHiQvmM7rYl0 5CF1urs7wrl0V0ITHedRhfh7R89JCj0dt29mDNCuXhT+Fos0mIGuAfxu0skbRHGgFK H3SN1WnqE2koQ== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: patches@arm.linux.org.uk Subject: [PATCH] ARM: specify install, zinstall, and uinstall as PHONY targets Date: Tue, 5 Apr 2016 11:08:26 +0900 Message-Id: <1459822106-4414-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20160404_190810_795837_CDC43ACB X-CRM114-Status: UNSURE ( 7.07 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.2 (-) X-Spam-Report: SpamAssassin version 3.4.0 on bombadil.infradead.org summary: Content analysis details: (-1.2 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.7 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Masahiro Yamada , Russell King , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patch=linaro.org@lists.infradead.org Obviously, these are PHONY targets. Signed-off-by: Masahiro Yamada --- KernelVersion: 4.6-rc1 arch/arm/boot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel diff --git a/arch/arm/boot/Makefile b/arch/arm/boot/Makefile index 48fab15..446705a 100644 --- a/arch/arm/boot/Makefile +++ b/arch/arm/boot/Makefile @@ -88,7 +88,7 @@ $(obj)/bootpImage: $(obj)/bootp/bootp FORCE $(call if_changed,objcopy) @$(kecho) ' Kernel: $@ is ready' -PHONY += initrd +PHONY += initrd install zinstall uinstall initrd: @test "$(INITRD_PHYS)" != "" || \ (echo This machine does not support INITRD; exit -1)