forked from Samsung/TizenRT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add a new documentation for how to install kconfig frontend
That is not a mandatory always. Someone who is not a developer will not use menuconfig.
- Loading branch information
1 parent
21de19f
commit d3f9160
Showing
2 changed files
with
29 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Kconfig-frontends Installation | ||
|
||
## Prerequisites | ||
The *bison* (or byacc if supported), *flex*, *gperf*, *libncurses5-dev*, *zlib1g-dev*, *gettext* and *g++* packages should be installed: | ||
```bash | ||
sudo apt-get install bison flex gperf libncurses5-dev zlib1g-dev gettext g++ | ||
``` | ||
|
||
## Kconfig-frontend | ||
1. Download and untar *kconfig-frontends* package. | ||
One of site is [Yann Morin's Project](http://ymorin.is-a-geek.org/projects/kconfig-frontends). | ||
```bash | ||
tar -xvf kconfig-frontends-x.xx.x.x.tar.bz2 | ||
``` | ||
|
||
2. Go to *kconfig-frontends* folder. | ||
```bash | ||
cd kconfig-frontends-x.xx.x.x | ||
``` | ||
|
||
3. Configure and Build. | ||
```bash | ||
./configure --enable-mconf --disable-gconf --disable-qconf | ||
make | ||
sudo make install | ||
``` |