Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Arnout Vandecappelle <arnout@mind.be>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2 2/6] ux500-firmware: new package
Date: Mon, 12 Nov 2012 22:44:21 +0100	[thread overview]
Message-ID: <50A16DB5.8090101@mind.be> (raw)
In-Reply-To: <1352742102-19010-3-git-send-email-gregory.hermant@calao-systems.com>

On 11/12/12 18:41, Gregory Hermant wrote:
>
> Signed-off-by: Gregory Hermant<gregory.hermant@calao-systems.com>
> ---
>   package/Config.in                        |    1 +
>   package/ux500-firmware/Config.in         |    7 +++++++
>   package/ux500-firmware/ux500-firmware.mk |   20 ++++++++++++++++++++
>   3 files changed, 28 insertions(+)
>   create mode 100644 package/ux500-firmware/Config.in
>   create mode 100644 package/ux500-firmware/ux500-firmware.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index cb78d2f..6da6e73 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -261,6 +261,7 @@ source "package/usb_modeswitch/Config.in"
>   source "package/usb_modeswitch_data/Config.in"
>   source "package/usbmount/Config.in"
>   source "package/usbutils/Config.in"
> +source "package/ux500-firmware/Config.in"
>   source "package/wipe/Config.in"
>   endmenu
>
> diff --git a/package/ux500-firmware/Config.in b/package/ux500-firmware/Config.in
> new file mode 100644
> index 0000000..7e8a94b
> --- /dev/null
> +++ b/package/ux500-firmware/Config.in
> @@ -0,0 +1,7 @@
> +config BR2_PACKAGE_UX500_FIRMWARE
> +	bool "ux500-firmware"
> +	help
> +	  This package provides various binary firmware files (closed binary blobs)
> +	  for the Azurewave AW-NH580 combo module (wifi, bt, gps).
> +
> +	  https://launchpad.net/~igloocommunity-maintainers/+archive/snowball/+files/
> diff --git a/package/ux500-firmware/ux500-firmware.mk b/package/ux500-firmware/ux500-firmware.mk
> new file mode 100644
> index 0000000..522113a
> --- /dev/null
> +++ b/package/ux500-firmware/ux500-firmware.mk
> @@ -0,0 +1,20 @@
> +#############################################################
> +#
> +# ux500-firmware
> +#
> +#############################################################
> +UX500_FIRMWARE_VERSION = 1.1.3-6
> +UX500_FIRMWARE_SOURCE = ux500-firmware_$(UX500_FIRMWARE_VERSION)linaro1.tar.gz
> +UX500_FIRMWARE_SITE = https://launchpad.net/~igloocommunity-maintainers/+archive/snowball/+files/
> +UX500_FIRMWARE_LICENSE = Snowball click-wrap license

  UX500_FIRMWARE_LICENSE_FILES = license.txt
> +UX500_FIRMWARE_REDISTRIBUTE = NO
> +
> +define UX500_FIRMWARE_INSTALL_TARGET_CMDS
> +	mkdir -p $(TARGET_DIR)/lib/firmware
> +	cp -r $(@D)/* $(TARGET_DIR)/lib/firmware/

  This also installs the debian directory etc. to the target.  Why not use
the Makefile that is delivered with the package?

> +	for f in $(TARGET_DIR)/lib/firmware/CG2900* ; do \
> +		mv $$f $${f/CG2900/CG29XX}; \
> +	done

  This warrants a comment why it is needed to rename some files.

> +endef
> +
> +$(eval $(generic-package))


  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

  reply	other threads:[~2012-11-12 21:44 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-12 17:41 [Buildroot] [PATCH v2 0/6] Add support for the snowball board Gregory Hermant
2012-11-12 17:41 ` [Buildroot] [PATCH v2 1/6] hdmiservice: new package Gregory Hermant
2012-11-12 18:34   ` Thomas Petazzoni
2012-11-13 11:03     ` Grégory Hermant
2012-11-13 11:06       ` Thomas Petazzoni
2012-11-12 17:41 ` [Buildroot] [PATCH v2 2/6] ux500-firmware: " Gregory Hermant
2012-11-12 21:44   ` Arnout Vandecappelle [this message]
2012-11-12 17:41 ` [Buildroot] [PATCH v2 3/6] Add board files for snowball Gregory Hermant
2012-11-12 18:37   ` Thomas Petazzoni
2012-11-13 11:03     ` Grégory Hermant
2012-11-13 21:18       ` Arnout Vandecappelle
2012-11-12 17:41 ` [Buildroot] [PATCH v2 4/6] Add init script files for snowball board Gregory Hermant
2012-11-12 21:45   ` Arnout Vandecappelle
2012-11-12 17:41 ` [Buildroot] [PATCH v2 5/6] bluez-utils: add cg2900 support " Gregory Hermant
2012-11-12 21:47   ` Arnout Vandecappelle
2012-11-12 17:41 ` [Buildroot] [PATCH v2 6/6] Add config file for the " Gregory Hermant
2012-11-12 21:53   ` Arnout Vandecappelle

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=50A16DB5.8090101@mind.be \
    --to=arnout@mind.be \
    --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