From patchwork Thu Dec 17 12:17:25 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Borislav Petkov X-Patchwork-Id: 11979715 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-18.7 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AF917C2BB9A for ; Thu, 17 Dec 2020 12:18:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 73B5F2395C for ; Thu, 17 Dec 2020 12:18:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728487AbgLQMRv (ORCPT ); Thu, 17 Dec 2020 07:17:51 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44002 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727354AbgLQMRv (ORCPT ); Thu, 17 Dec 2020 07:17:51 -0500 Received: from mail.skyhub.de (mail.skyhub.de [IPv6:2a01:4f8:190:11c2::b:1457]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E9475C061285; Thu, 17 Dec 2020 04:17:35 -0800 (PST) Received: from zn.tnic (p200300ec2f10f600410f6ed9c6f20697.dip0.t-ipconnect.de [IPv6:2003:ec:2f10:f600:410f:6ed9:c6f2:697]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.skyhub.de (SuperMail on ZX Spectrum 128k) with ESMTPSA id 59FC81EC0598; Thu, 17 Dec 2020 13:17:34 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=alien8.de; s=dkim; t=1608207454; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type: content-transfer-encoding:content-transfer-encoding:in-reply-to: references; bh=TPWaO67d3hE3RjpDT8ArmjOCcGJTwKzOlw0QHfcSZyQ=; b=qtp2TRZe+Y/uy/kI9RCvDIwbEqUu2HhXNE1pVLRIuA0i5hs+g5a794Tj47QH0Abilxj2eB fGSKuWxeIXKge5bPL/PGhdi2np79AnJ07kBzyRGXKmPSfDywFZuea8FBqi83UlKP4+iNlu K7rDcHsGBc8f93nvRbor0pdK9ytCHRI= From: Borislav Petkov To: linux-kbuild@vger.kernel.org Cc: LKML Subject: [PATCH] Makefile: Add {kvm_guest,xen}.config targets to make help's output Date: Thu, 17 Dec 2020 13:17:25 +0100 Message-Id: <20201217121725.16842-1-bp@alien8.de> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org From: Borislav Petkov Add the targets which add Kconfig items to the .config so that the kernel can be run as a guest, to the main 'make help' output so that they can be found easier and there's no need to grep the tree each time to remember what they should be called. Signed-off-by: Borislav Petkov --- scripts/kconfig/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index e46df0a2d4f9..fdfae4f6943e 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -143,6 +143,8 @@ help: @echo ' default value without prompting' @echo ' tinyconfig - Configure the tiniest possible kernel' @echo ' testconfig - Run Kconfig unit tests (requires python3 and pytest)' + @echo ' kvm_guest.config - Enable Kconfig items for running this kernel as a KVM guest' + @echo ' xen.config - Enable Kconfig items for running this kernel as a Xen guest' # =========================================================================== # object files used by all kconfig flavours