diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-07-27 22:09:10 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-07-27 22:09:10 +0200 |
commit | e63fd15e202a3e5e6ee8d5ecb181610fc2d07f45 (patch) | |
tree | c0c2f7b41f7ea193cc0fff53cd626613147433fb | |
parent | 52dbe0711956ae5cd8e1d9f9776511db44266436 (diff) | |
parent | d9a9501771d0aeb22967adeec9e0ac232e1a003d (diff) |
Merge branch 'xconfig-documentation' of git://git.busybox.net/~tpetazzoni/git/buildroot
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | docs/buildroot.html | 24 |
3 files changed, 21 insertions, 6 deletions
@@ -10,6 +10,8 @@ removed mandatory dependency on useless libraries such as libXt or libXaw. + New QT-based configurator, usable using 'make xconfig'. + Issues resolved (http://bugs.uclibc.org): #83: liblockfile fails to compile due to eaccess redefinition @@ -561,6 +561,7 @@ help: @echo @echo 'Configuration:' @echo ' menuconfig - interactive curses-based configurator' + @echo ' xconfig - interactive Qt-based configurator' @echo ' oldconfig - resolve any unresolved symbols in .config' @echo ' configured - make {uclibc/busybox/linux26}-config' @echo ' saveconfig - save current configuration under local/<project>' diff --git a/docs/buildroot.html b/docs/buildroot.html index b49208c27..8cd705df4 100644 --- a/docs/buildroot.html +++ b/docs/buildroot.html @@ -155,6 +155,17 @@ $ make menuconfig </pre> +<p>to run the curses-based configurator, or</p> + +<pre> + $ make xconfig +</pre> + + <p>to run the Qt3-based configurator. On Debian-like systems, the + <code>libncurses5-dev</code> package is required to use the + <i>menuconfig</i> interface, and the <code>libqt3-mt-dev</code> is + required to use the <i>xconfig</i> interface.</p> + <p>For each entry of the configuration tool, you can find associated help that describes the purpose of the entry. </p> @@ -219,9 +230,9 @@ <h3><a name="offline_builds" id="offline_builds"></a> Offline builds</h3> - <p>If you intend to do an offline-build and just want to download all - sources that you previously selected in "make menuconfig" then - issue:</p> + <p>If you intend to do an offline-build and just want to download + all sources that you previously selected in the configurator + (<i>menuconfig</i> or <i>xconfig</i>) then issue:</p> <pre> $ make source </pre> @@ -340,9 +351,10 @@ $ make me<TAB> is made. So simply rebuilding the image by running make should propagate any new changes to the image. </li> - <li>When configuring the build system, using <code>make menuconfig</code>, - you can specify the contents of the /etc/hostname and /etc/issue - (the welcome banner) in the <code>PROJECT</code> section</li> + <li>When configuring the build system, using <code>make + menuconfig</code> or <code>make xconfig</code>, you can specify + the contents of the /etc/hostname and /etc/issue (the welcome + banner) in the <code>PROJECT</code> section</li> </ul> <h2><a name="custom_busybox" id="custom_busybox"></a>Customizing the |