Documentation: Update kconfig-frontends install instructions

It still assumed kconfig-frontends as part of the core NuttX
repository.
This commit is contained in:
Gustavo Henrique Nihei
2021-06-10 14:46:56 -03:00
committed by hartmannathan
parent 7259601baa
commit bf1d587063
+3 -2
View File
@@ -61,7 +61,7 @@ First, install the following set of system dependencies according to your Operat
KConfig frontend KConfig frontend
---------------- ----------------
NuttX configuration system uses `KConfig <https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt>`_ which is exposed via a series of interactive menu-based *frontends*, part of the ``kconfig-frontends`` package. Depending on your OS you may use a precompiled package or you will have to build it from source: NuttX configuration system uses `KConfig <https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt>`_ which is exposed via a series of interactive menu-based *frontends*, part of the ``kconfig-frontends`` package. Depending on your OS you may use a precompiled package or you will have to build it from source, which is available in the `NuttX tools repository <https://bitbucket.org/nuttx/tools/src/master/kconfig-frontends/>`_:
.. tabs:: .. tabs::
@@ -71,12 +71,13 @@ NuttX configuration system uses `KConfig <https://www.kernel.org/doc/Documentati
.. code-tab:: console MacOS, Ubuntu 18.04 LTS and earlier .. code-tab:: console MacOS, Ubuntu 18.04 LTS and earlier
$ git clone https://bitbucket.org/nuttx/tools.git
$ cd tools/kconfig-frontends $ cd tools/kconfig-frontends
$ # on MacOS do the following: $ # on MacOS do the following:
$ patch < ../kconfig-macos.diff -p 1 $ patch < ../kconfig-macos.diff -p 1
$ ./configure --enable-mconf --disable-shared --enable-static --disable-gconf --disable-qconf --disable-nconf $ ./configure --enable-mconf --disable-shared --enable-static --disable-gconf --disable-qconf --disable-nconf
$ # on Linux do the following: $ # on Linux do the following:
$ ./configure --enable-mconf --disable-nconf --disable-gconf --disable-qconf $ ./configure --enable-mconf --disable-nconf --disable-gconf --disable-qconf
$ make $ make
$ make install $ make install