* [Buildroot] [pull request] Pull request for branch xconfig-documentation
@ 2009-07-27 16:10 Thomas Petazzoni
2009-07-27 16:10 ` [Buildroot] [PATCH 1/2] Makefile: add the xconfig target to the help of the main Makefile Thomas Petazzoni
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2009-07-27 16:10 UTC (permalink / raw)
To: buildroot
The following changes since commit f26acf61ebf73ad0bfe276fcc9396fd26bb0aad6:
Mike Crowe (1):
package: replace mkdosfs with dosfstools
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot xconfig-documentation
Thomas Petazzoni (2):
Makefile: add the xconfig target to the help of the main Makefile
documentation: mention the new xconfig interface
CHANGES | 2 ++
Makefile | 1 +
docs/buildroot.html | 24 ++++++++++++++++++------
3 files changed, 21 insertions(+), 6 deletions(-)
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 4+ messages in thread* [Buildroot] [PATCH 1/2] Makefile: add the xconfig target to the help of the main Makefile 2009-07-27 16:10 [Buildroot] [pull request] Pull request for branch xconfig-documentation Thomas Petazzoni @ 2009-07-27 16:10 ` Thomas Petazzoni 2009-07-27 16:10 ` [Buildroot] [PATCH 2/2] documentation: mention the new xconfig interface Thomas Petazzoni 2009-07-27 20:10 ` [Buildroot] [pull request] Pull request for branch xconfig-documentation Peter Korsgaard 2 siblings, 0 replies; 4+ messages in thread From: Thomas Petazzoni @ 2009-07-27 16:10 UTC (permalink / raw) To: buildroot Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index e61f995..182853c 100644 --- a/Makefile +++ b/Makefile @@ -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>' -- 1.6.0.4 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] documentation: mention the new xconfig interface 2009-07-27 16:10 [Buildroot] [pull request] Pull request for branch xconfig-documentation Thomas Petazzoni 2009-07-27 16:10 ` [Buildroot] [PATCH 1/2] Makefile: add the xconfig target to the help of the main Makefile Thomas Petazzoni @ 2009-07-27 16:10 ` Thomas Petazzoni 2009-07-27 20:10 ` [Buildroot] [pull request] Pull request for branch xconfig-documentation Peter Korsgaard 2 siblings, 0 replies; 4+ messages in thread From: Thomas Petazzoni @ 2009-07-27 16:10 UTC (permalink / raw) To: buildroot Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- CHANGES | 2 ++ docs/buildroot.html | 24 ++++++++++++++++++------ 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 0d6ac97..ba3da53 100644 --- a/CHANGES +++ b/CHANGES @@ -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 diff --git a/docs/buildroot.html b/docs/buildroot.html index b49208c..8cd705d 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 -- 1.6.0.4 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [pull request] Pull request for branch xconfig-documentation 2009-07-27 16:10 [Buildroot] [pull request] Pull request for branch xconfig-documentation Thomas Petazzoni 2009-07-27 16:10 ` [Buildroot] [PATCH 1/2] Makefile: add the xconfig target to the help of the main Makefile Thomas Petazzoni 2009-07-27 16:10 ` [Buildroot] [PATCH 2/2] documentation: mention the new xconfig interface Thomas Petazzoni @ 2009-07-27 20:10 ` Peter Korsgaard 2 siblings, 0 replies; 4+ messages in thread From: Peter Korsgaard @ 2009-07-27 20:10 UTC (permalink / raw) To: buildroot >>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes: Thomas> The following changes since commit f26acf61ebf73ad0bfe276fcc9396fd26bb0aad6: Thomas> Mike Crowe (1): Thomas> package: replace mkdosfs with dosfstools Thomas> are available in the git repository at: Thomas> git://git.busybox.net/~tpetazzoni/git/buildroot xconfig-documentation Thomas> Thomas Petazzoni (2): Thomas> Makefile: add the xconfig target to the help of the main Makefile Thomas> documentation: mention the new xconfig interface Thanks, pulled and pushed. -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-07-27 20:10 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-07-27 16:10 [Buildroot] [pull request] Pull request for branch xconfig-documentation Thomas Petazzoni 2009-07-27 16:10 ` [Buildroot] [PATCH 1/2] Makefile: add the xconfig target to the help of the main Makefile Thomas Petazzoni 2009-07-27 16:10 ` [Buildroot] [PATCH 2/2] documentation: mention the new xconfig interface Thomas Petazzoni 2009-07-27 20:10 ` [Buildroot] [pull request] Pull request for branch xconfig-documentation Peter Korsgaard
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.