Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [pull request v3] Pull request for branch for-2012.02/host-tools
@ 2012-01-28 17:42 Thomas Petazzoni
  2012-01-28 17:42 ` [Buildroot] [PATCH 1/7] Add basic config infrastructure for host utilities Thomas Petazzoni
                   ` (6 more replies)
  0 siblings, 7 replies; 16+ messages in thread
From: Thomas Petazzoni @ 2012-01-28 17:42 UTC (permalink / raw)
  To: buildroot

Hello,

This is the third posting of this patch set that allows some host
utilities to be visible in menuconfig, when those host utilities are
not simply build dependencies, but might also be directly interesting
for the user (image creation utilities, device programming utilities,
etc.).

Changes since v2 (posted on December, 28th 2011) :

 * Ensured that the entries are sorted alphabetically

 * Added Acked-by received by Buildroot contributors

 * Rebased on current master

Changes since v1 (posted on October, 1st 2011) :

 * Fix a commit log, as per the comment from Luca Ceresoli

 * Add the SAM-BA utility from Atmel as another host utility. This
   tool can be used from the development machine to reflash a virgin
   AT91-based device, through USB or serial.

Regards,

Thomas

The following changes since commit 5796753b6b4caba703cf23f45f68b7715d1150a4:

  mplayer: add optional vorbis dependency (2012-01-27 11:18:52 +0100)

are available in the git repository at:
  http://free-electrons.com/~thomas/buildroot.git for-2012.02/host-tools

Thomas Petazzoni (7):
      Add basic config infrastructure for host utilities
      uboot-tools: expose host package in menuconfig
      libftdi: add host variant
      libusb-compat: add host variant
      libusb: add host variant
      openocd: add host variant
      sam-ba: new package with host variant only

 Config.in                              |    2 ++
 package/Config.in.host                 |    7 +++++++
 package/libftdi/libftdi.mk             |    3 +++
 package/libusb-compat/libusb-compat.mk |    4 ++++
 package/libusb/libusb.mk               |    3 +++
 package/openocd/Config.in.host         |    6 ++++++
 package/openocd/openocd.mk             |   10 ++++++++++
 package/sam-ba/Config.in.host          |    6 ++++++
 package/sam-ba/sam-ba.mk               |   23 +++++++++++++++++++++++
 package/uboot-tools/Config.in.host     |    6 ++++++
 10 files changed, 70 insertions(+), 0 deletions(-)
 create mode 100644 package/Config.in.host
 create mode 100644 package/openocd/Config.in.host
 create mode 100644 package/sam-ba/Config.in.host
 create mode 100644 package/sam-ba/sam-ba.mk
 create mode 100644 package/uboot-tools/Config.in.host

Thanks,
-- 
Thomas Petazzoni

^ permalink raw reply	[flat|nested] 16+ messages in thread
* [Buildroot] [pull request v2] Pull request for branch for-2012.02/host-tools
@ 2011-12-29 17:40 Thomas Petazzoni
  2011-12-29 17:40 ` [Buildroot] [PATCH 3/7] libftdi: add host variant Thomas Petazzoni
  0 siblings, 1 reply; 16+ messages in thread
From: Thomas Petazzoni @ 2011-12-29 17:40 UTC (permalink / raw)
  To: buildroot

Hello,

This is the second posting of this patch set that allows some host
utilities to be visible in menuconfig, when those host utilities are
not simply build dependencies, but might also be directly interesting
for the user (image creation utilities, device programming utilities,
etc.).

A first posting was done on October, 1st 2011, and the general idea
and implementation received positive comments from Luca Ceresoli and
Thomas De Schampheleire.

Changes since v1:

 * Fix a commit log, as per the comment from Luca Ceresoli

 * Add the SAM-BA utility from Atmel as another host utility. This
   tool can be used from the development machine to reflash a virgin
   AT91-based device, through USB or serial.

Regards,

Thomas

The following changes since commit ef3fe1bef6581c66af3858d540343e011cb9fdd6:

  cdrkit: bump to version 1.1.11 and adjust style (2011-12-21 23:02:31 +0100)

are available in the git repository at:
  http://free-electrons.com/~thomas/buildroot.git for-2012.02/host-tools

Thomas Petazzoni (7):
      Add basic config infrastructure for host utilities
      uboot-tools: expose host package in menuconfig
      libftdi: add host variant
      libusb-compat: add host variant
      libusb: add host variant
      openocd: add host variant
      sam-ba: new package with host variant only

 Config.in                              |    2 ++
 package/Config.in.host                 |    7 +++++++
 package/libftdi/libftdi.mk             |    3 +++
 package/libusb-compat/libusb-compat.mk |    4 ++++
 package/libusb/libusb.mk               |    3 +++
 package/openocd/Config.in.host         |    6 ++++++
 package/openocd/openocd.mk             |   10 ++++++++++
 package/sam-ba/Config.in.host          |    6 ++++++
 package/sam-ba/sam-ba.mk               |   23 +++++++++++++++++++++++
 package/uboot-tools/Config.in.host     |    6 ++++++
 10 files changed, 70 insertions(+), 0 deletions(-)
 create mode 100644 package/Config.in.host
 create mode 100644 package/openocd/Config.in.host
 create mode 100644 package/sam-ba/Config.in.host
 create mode 100644 package/sam-ba/sam-ba.mk
 create mode 100644 package/uboot-tools/Config.in.host

Thanks,
-- 
Thomas Petazzoni

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

end of thread, other threads:[~2012-02-02 20:14 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-28 17:42 [Buildroot] [pull request v3] Pull request for branch for-2012.02/host-tools Thomas Petazzoni
2012-01-28 17:42 ` [Buildroot] [PATCH 1/7] Add basic config infrastructure for host utilities Thomas Petazzoni
2012-02-02 19:57   ` Peter Korsgaard
2012-01-28 17:42 ` [Buildroot] [PATCH 2/7] uboot-tools: expose host package in menuconfig Thomas Petazzoni
2012-02-02 19:57   ` Peter Korsgaard
2012-01-28 17:42 ` [Buildroot] [PATCH 3/7] libftdi: add host variant Thomas Petazzoni
2012-02-02 19:57   ` Peter Korsgaard
2012-01-28 17:42 ` [Buildroot] [PATCH 4/7] libusb-compat: " Thomas Petazzoni
2012-02-02 20:00   ` Peter Korsgaard
2012-01-28 17:42 ` [Buildroot] [PATCH 5/7] libusb: " Thomas Petazzoni
2012-02-02 20:02   ` Peter Korsgaard
2012-01-28 17:42 ` [Buildroot] [PATCH 6/7] openocd: " Thomas Petazzoni
2012-02-02 20:06   ` Peter Korsgaard
2012-01-28 17:42 ` [Buildroot] [PATCH 7/7] sam-ba: new package with host variant only Thomas Petazzoni
2012-02-02 20:14   ` Peter Korsgaard
  -- strict thread matches above, loose matches on Subject: below --
2011-12-29 17:40 [Buildroot] [pull request v2] Pull request for branch for-2012.02/host-tools Thomas Petazzoni
2011-12-29 17:40 ` [Buildroot] [PATCH 3/7] libftdi: add host variant Thomas Petazzoni

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