From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] [RFC] Request for comments on branch for-2011.11/host-tools
Date: Sat, 1 Oct 2011 17:00:17 +0200 [thread overview]
Message-ID: <cover.1317481137.git.thomas.petazzoni@free-electrons.com> (raw)
Hello,
Here is a small set of patches implementing the recent discussion we
had about exposing host utilities. It exposes host-uboot-tools and
host-openocd into a new "Host utilities" main menu.
This is just to see if this looks like something that matches what we
discussed, and something that Peter would accept.
Regards,
Thomas
The following changes since commit 8511728696a298ccdb8b902b60ab398d8f67e745:
gnutls: bump to version 2.10.5 (2011-09-30 08:26:08 +0200)
are available in the git repository at:
http://free-electrons.com/~thomas/buildroot.git for-2011.11/host-tools
Thomas Petazzoni (6):
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 as host utility
Config.in | 2 ++
package/Config.in.host | 6 ++++++
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/uboot-tools/Config.in.host | 6 ++++++
8 files changed, 40 insertions(+), 0 deletions(-)
create mode 100644 package/Config.in.host
create mode 100644 package/openocd/Config.in.host
create mode 100644 package/uboot-tools/Config.in.host
Thanks,
--
Thomas Petazzoni
next reply other threads:[~2011-10-01 15:00 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-01 15:00 Thomas Petazzoni [this message]
2011-10-01 15:00 ` [Buildroot] [PATCH 1/6] Add basic config infrastructure for host utilities Thomas Petazzoni
2011-10-02 20:20 ` Luca Ceresoli
2011-10-01 15:00 ` [Buildroot] [PATCH 2/6] uboot-tools: expose host package in menuconfig Thomas Petazzoni
2011-10-01 15:00 ` [Buildroot] [PATCH 3/6] libftdi: add host variant Thomas Petazzoni
2011-10-01 15:00 ` [Buildroot] [PATCH 4/6] libusb-compat: " Thomas Petazzoni
2011-10-02 20:29 ` Luca Ceresoli
2011-10-03 19:33 ` Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 01/22] package: derive HOST_FOO_DEPENDENCIES from FOO_DEPENDENCIES Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 02/22] atk: removed redundant HOST_FOO_DEPENDENCIES Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 03/22] cramfs: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 04/22] fontconfig: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 05/22] libpng: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 06/22] libxml-parser-perl: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 07/22] mpc: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 08/22] mpfr: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 09/22] squashfs3: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 10/22] libxcb: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 11/22] xapp_bdftopcf: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 12/22] xapp_mkfontdir: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 13/22] xapp_mkfontscale: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 14/22] xapp_xkbcomp: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 15/22] xfont_encodings: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 16/22] xfont_font-util: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 17/22] xlib_libX11: removed redundant HOST_FOO_DEPENDENCIES and incorrect target dependency Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 18/22] xlib_libXau: removed redundant HOST_FOO_DEPENDENCIES Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 19/22] xlib_libXdmcp: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 20/22] xlib_libXfont: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 21/22] xlib_libfontenc: " Arnout Vandecappelle
2011-10-03 21:20 ` [Buildroot] [PATCH 22/22] xlib_libxkbfile: " Arnout Vandecappelle
2011-10-03 21:35 ` [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
2011-10-04 5:34 ` Thomas Petazzoni
2011-10-04 16:15 ` Arnout Vandecappelle
2011-12-29 17:07 ` Thomas Petazzoni
2011-10-01 15:00 ` [Buildroot] [PATCH 5/6] libusb: add host variant Thomas Petazzoni
2011-10-01 15:00 ` [Buildroot] [PATCH 6/6] openocd: add as host utility Thomas Petazzoni
2011-10-02 20:19 ` [Buildroot] [RFC] Request for comments on branch for-2011.11/host-tools Luca Ceresoli
2011-10-03 7:07 ` Thomas De Schampheleire
2011-12-06 11:58 ` Luca Ceresoli
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1317481137.git.thomas.petazzoni@free-electrons.com \
--to=thomas.petazzoni@free-electrons.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox