Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] Makefile: add help for the *-update-config and *-update-defconfig targets
@ 2012-02-28 13:22 Alexandre Pereira da Silva
  2012-02-28 15:49 ` Thomas De Schampheleire
  2012-02-28 22:52 ` Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Alexandre Pereira da Silva @ 2012-02-28 13:22 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com>
---
 Makefile |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile
index ded7cab..028c98a 100644
--- a/Makefile
+++ b/Makefile
@@ -671,13 +671,17 @@ help:
 	@echo '  allnopackageconfig     - New config where package options are answered with no'
 ifeq ($(BR2_PACKAGE_BUSYBOX),y)
 	@echo '  busybox-menuconfig     - Run BusyBox menuconfig'
+	@echo '  busybox-update-config  - Update BusyBox configuration'
 endif
 ifeq ($(BR2_LINUX_KERNEL),y)
 	@echo '  linux-menuconfig       - Run Linux kernel menuconfig'
 	@echo '  linux-savedefconfig    - Run Linux kernel savedefconfig'
+	@echo '  linux-update-config    - Update Linux kernel configuration'
+	@echo '  linux-update-defconfig - Update Linux kernel defconfig'
 endif
 ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
 	@echo '  uclibc-menuconfig      - Run uClibc menuconfig'
+	@echo '  uclibc-update-config   - Update uClibc configuration'
 endif
 ifeq ($(BR2_TOOLCHAIN_CTNG),y)
 	@echo '  ctng-menuconfig        - Run crosstool-NG menuconfig'
-- 
1.7.9

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] Makefile: add help for the *-update-config and *-update-defconfig targets
  2012-02-28 13:22 [Buildroot] [PATCH] Makefile: add help for the *-update-config and *-update-defconfig targets Alexandre Pereira da Silva
@ 2012-02-28 15:49 ` Thomas De Schampheleire
  2012-02-28 21:48   ` Arnout Vandecappelle
  2012-02-28 22:52 ` Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas De Schampheleire @ 2012-02-28 15:49 UTC (permalink / raw)
  To: buildroot

On Tue, Feb 28, 2012 at 2:22 PM, Alexandre Pereira da Silva
<aletes.xgr@gmail.com> wrote:
> Signed-off-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com>
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>

> ---
> ?Makefile | ? ?4 ++++
> ?1 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index ded7cab..028c98a 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -671,13 +671,17 @@ help:
> ? ? ? ?@echo ' ?allnopackageconfig ? ? - New config where package options are answered with no'
> ?ifeq ($(BR2_PACKAGE_BUSYBOX),y)
> ? ? ? ?@echo ' ?busybox-menuconfig ? ? - Run BusyBox menuconfig'
> + ? ? ? @echo ' ?busybox-update-config ?- Update BusyBox configuration'
> ?endif
> ?ifeq ($(BR2_LINUX_KERNEL),y)
> ? ? ? ?@echo ' ?linux-menuconfig ? ? ? - Run Linux kernel menuconfig'
> ? ? ? ?@echo ' ?linux-savedefconfig ? ?- Run Linux kernel savedefconfig'
> + ? ? ? @echo ' ?linux-update-config ? ?- Update Linux kernel configuration'
> + ? ? ? @echo ' ?linux-update-defconfig - Update Linux kernel defconfig'
> ?endif
> ?ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
> ? ? ? ?@echo ' ?uclibc-menuconfig ? ? ?- Run uClibc menuconfig'
> + ? ? ? @echo ' ?uclibc-update-config ? - Update uClibc configuration'
> ?endif
> ?ifeq ($(BR2_TOOLCHAIN_CTNG),y)
> ? ? ? ?@echo ' ?ctng-menuconfig ? ? ? ?- Run crosstool-NG menuconfig'
> --
> 1.7.9
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] Makefile: add help for the *-update-config and *-update-defconfig targets
  2012-02-28 15:49 ` Thomas De Schampheleire
@ 2012-02-28 21:48   ` Arnout Vandecappelle
  0 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2012-02-28 21:48 UTC (permalink / raw)
  To: buildroot

On Tuesday 28 February 2012 15:49:19 Thomas De Schampheleire wrote:
> On Tue, Feb 28, 2012 at 2:22 PM, Alexandre Pereira da Silva
> <aletes.xgr@gmail.com> wrote:
> > Signed-off-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com>
> Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>

 And if at all possible, include in 2012.02!

 Regards,
 Arnout

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] Makefile: add help for the *-update-config and *-update-defconfig targets
  2012-02-28 13:22 [Buildroot] [PATCH] Makefile: add help for the *-update-config and *-update-defconfig targets Alexandre Pereira da Silva
  2012-02-28 15:49 ` Thomas De Schampheleire
@ 2012-02-28 22:52 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2012-02-28 22:52 UTC (permalink / raw)
  To: buildroot

Le Tue, 28 Feb 2012 10:22:06 -0300,
Alexandre Pereira da Silva <aletes.xgr@gmail.com> a ?crit :

> Signed-off-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com>

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-02-28 22:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-28 13:22 [Buildroot] [PATCH] Makefile: add help for the *-update-config and *-update-defconfig targets Alexandre Pereira da Silva
2012-02-28 15:49 ` Thomas De Schampheleire
2012-02-28 21:48   ` Arnout Vandecappelle
2012-02-28 22:52 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox