From nobody Wed Apr 15 05:43:14 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 371BDC43334 for ; Mon, 25 Jul 2022 12:08:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235039AbiGYMIb (ORCPT ); Mon, 25 Jul 2022 08:08:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54118 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232709AbiGYMI2 (ORCPT ); Mon, 25 Jul 2022 08:08:28 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8AD19DF70; Mon, 25 Jul 2022 05:08:24 -0700 (PDT) Date: Mon, 25 Jul 2022 12:08:21 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1658750902; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=0Gk8CPxljSGi8h/toKgfaY1Sja4UpRi79bK/PS63Ce4=; b=gPB7SrcnX8SDYZjl0/8Z8U4Jf2jb4kh9vf/rd4wZ5aAUeRUEo0QpE3naqxHAiMng0RSxL8 pO+G8ut0FDw9bqUBSxfpNZfho6a69rAY4/9fuZmpVu7J1ViEtefNRU6d/IL5RigtzQNsGd BavH9E11mBa7w456HxeLYQgaZZ28oYs2nsq5fhK4m1pPX6VOwbAZcm4r8hoarA87FxLvfZ ewE4PII2SFOsIO9NjiQ/ulnI5zpwZEia95sABDeHwGDuJHD2GYnf4hPIS2CQBcSuF9PfrC PvvS+V9WgHAaX5rQJBPYDEKPt3GvdswLUrJVkspY+NwwhYX/WmkvZMhXLs7gdA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1658750902; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=0Gk8CPxljSGi8h/toKgfaY1Sja4UpRi79bK/PS63Ce4=; b=FR8vef3P9kxoTgbcrsyRsmCfO4m4lAoJ8YUKGRrWyrQOmSQvH6891dh4wryd525OGx7luu a+EqZi31WRvVYIAQ== From: "tip-bot2 for Masahiro Yamada" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: x86/build] x86/purgatory: Hard-code obj-y in Makefile Cc: Masahiro Yamada , Borislav Petkov , x86@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <20220725020812.622255-1-masahiroy@kernel.org> References: <20220725020812.622255-1-masahiroy@kernel.org> MIME-Version: 1.0 Message-ID: <165875090170.15455.11194369295899993249.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the x86/build branch of tip: Commit-ID: 61922d3fa686733e08387a8a4e11b02b4af6d43c Gitweb: https://git.kernel.org/tip/61922d3fa686733e08387a8a4e11b02b4= af6d43c Author: Masahiro Yamada AuthorDate: Mon, 25 Jul 2022 11:08:11 +09:00 Committer: Borislav Petkov CommitterDate: Mon, 25 Jul 2022 10:26:49 +02:00 x86/purgatory: Hard-code obj-y in Makefile arch/x86/Kbuild guards the entire purgatory/ directory, and CONFIG_KEXEC_FILE is bool type. $(CONFIG_KEXEC_FILE) is always 'y' when this directory is being built. Signed-off-by: Masahiro Yamada Signed-off-by: Borislav Petkov Link: https://lore.kernel.org/r/20220725020812.622255-1-masahiroy@kernel.org --- arch/x86/purgatory/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/purgatory/Makefile b/arch/x86/purgatory/Makefile index ae53d54..248b009 100644 --- a/arch/x86/purgatory/Makefile +++ b/arch/x86/purgatory/Makefile @@ -81,4 +81,4 @@ quiet_cmd_bin2c =3D BIN2C $@ $(obj)/kexec-purgatory.c: $(obj)/purgatory.ro $(obj)/purgatory.chk FORCE $(call if_changed,bin2c) =20 -obj-$(CONFIG_KEXEC_FILE) +=3D kexec-purgatory.o +obj-y +=3D kexec-purgatory.o