From mboxrd@z Thu Jan 1 00:00:00 1970 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=-14.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,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 66C7AC433E6 for ; Sat, 29 Aug 2020 08:15:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3BABC2076D for ; Sat, 29 Aug 2020 08:15:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1598688902; bh=VfB/2MZ9mtR9/xnJ37w4K80XkmAwBmzxfUat8VfyIu8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=oehb76peLuw3sr/kbiwWkqoFPBQkNlcuigJhpA92yhX64SydgLJ67fCuIRmMUwlUM i6e/KcwzJoJ6CCzQlot8W3lq+fsSgwn16Bbkr/j8erfoUHNZm9HPmRRxnlyv50pcFl XXpkNNJO3dcP1oiZ6msh6LTHxUfrBWNx3mh7gk/8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727831AbgH2IO7 (ORCPT ); Sat, 29 Aug 2020 04:14:59 -0400 Received: from conuserg-09.nifty.com ([210.131.2.76]:47552 "EHLO conuserg-09.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726333AbgH2IOz (ORCPT ); Sat, 29 Aug 2020 04:14:55 -0400 Received: from oscar.flets-west.jp (softbank126090211135.bbtec.net [126.90.211.135]) (authenticated) by conuserg-09.nifty.com with ESMTP id 07T8ELfi014307; Sat, 29 Aug 2020 17:14:21 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-09.nifty.com 07T8ELfi014307 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1598688862; bh=OJdLICH6DzcmIBplrKxa7jTYDvkryW66ZqYjNneMHRo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZUdoEEcp8+kfmRObSXgUaPWBbiaQ9VJS+dR7NoThcFUWmQ5dznfEeVXpf0VDhMXI1 pYVZfEGWidA9SzdXFZbGYFhXYxAbz4reUB01wVAR4zdBQNPErnyZbw2xUWHCSah8mh I/Ydbb1M4322qln7srVkFQ2kcuucUNqR6lnQacN7jK/2sSo2y95yIpcJqS/a+SS5KH mOx5gmi90UV93FEhrTGT2iTeTM8db+r6o7S8PQiq3gxjYSQTb0FrPYuMCo+LkK70Lt GRW7d3JXdyGIOmFD5zXlP4A74pII7/Eeu67EdfFky7Ez5CUwgg/0JKM5oE35KdgK4E 8O7Uw4mYd5vVg== X-Nifty-SrcIP: [126.90.211.135] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Randy Dunlap , Mauro Carvalho Chehab , Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH 02/11] kconfig: qconf: update the intro message to match to the current code Date: Sat, 29 Aug 2020 17:14:08 +0900 Message-Id: <20200829081417.725978-2-masahiroy@kernel.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200829081417.725978-1-masahiroy@kernel.org> References: <20200829081417.725978-1-masahiroy@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org I do not think "Although there is no cross reference yet ..." is valid any longer. The cross reference is supported via hyperlinks enabled by the "show Debug Info" option. Update the message. Signed-off-by: Masahiro Yamada --- scripts/kconfig/qconf.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index c40e37656f3f..30a58aa6507a 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -1841,10 +1841,10 @@ void ConfigMainWindow::showIntro(void) "If you do not see an option (e.g., a device driver) that you " "believe should be present, try turning on Show All Options " - "under the Options menu. Although there is no cross reference " - "yet to help you figure out what other options must be enabled " - "to support the option you are interested in, you can still " - "view the help of a grayed-out option.\n\n" + "under the Options menu. Enabling Show Debug Info will help you" + "figure out what other options must be enabled to support the " + "option you are interested in, and hyperlinks will navigate to " + "them.\n\n" "Toggling Show Debug Info under the Options menu will show the " "dependencies, which you can then match by examining other " -- 2.25.1