From ed8bb587644c77f35128bec5926c693cbce57aa2 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 7 Jun 2015 11:44:56 -0600 Subject: [PATCH] Update more broken URLs and a README --- Documentation/NuttXGettingStarted.html | 2 +- README.txt | 30 ++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/Documentation/NuttXGettingStarted.html b/Documentation/NuttXGettingStarted.html index a7b88ee8d39..c49ddb031e7 100644 --- a/Documentation/NuttXGettingStarted.html +++ b/Documentation/NuttXGettingStarted.html @@ -18,7 +18,7 @@ There is no "Getting Started" Guide for NuttX yet. However, most everything that you need to get started with NuttX can be found in the README.txt file located in the top-level NuttX directory. That README.txt can also be read online in the NuttX GIT repository - here. + here. Just click on "Links to HEAD: (view)" on that page.

diff --git a/README.txt b/README.txt index b6eff41d32a..f283c9fbe52 100644 --- a/README.txt +++ b/README.txt @@ -13,6 +13,7 @@ README - Refreshing Configurations - NuttX Configuration Tool - Finding Selections in the Configuration Menus + - Reveal Hidden Configuration Options - Comparing Two Configurations - Incompatibilities with Older Configurations - NuttX Configuration Tool under DOS @@ -443,6 +444,18 @@ NuttX Configuration Tool make gconfig + Some keyboard shortcus supported by kconfig-mconf, the tool that runs + when you do 'make menuconfig': + + - '?' will bring up the mconfig help display. + + - '/' can be used find configuration selections. + + - 'Z' can be used to reveal hidden configuration options + + These last to shortcuts are described further in the following + paragraphs. + Finding Selections in the Configuration Menus --------------------------------------------- @@ -459,6 +472,23 @@ Finding Selections in the Configuration Menus It will show you not only where to find the configuration item, but also all of the dependencies related to the configuration item. +Reveal Hidden Configuration Options +----------------------------------- + + If you type 'Z', then kconfig-mconf will change what is displayed. + Normally, only enabled features that have all of their dependencies met + are displayed. That is, of course, not very useful if you would like to + discover new options or if you are looking for an option and do not + realize that the dependencies have not yet been selected and, hence, it + is not displayed. + + But if you enter 'Z', then every option will be shown, whether or not its + dependencies have been met. You can the see everything that could be + selected with the right dependency selections. These additional options + will be shown the '-' for the selection and for the value (since it + cannot be selected and has no value). About all you do is to select + the option to see what the dependencies are. + Comparing Two Configurations ----------------------------