[oe] [STABLE][PATCH 1/1] hostap-utils-0.4.7: use LDFLAGS (fixes QA error)

Koen Kooi k.kooi at student.utwente.nl
Mon Apr 20 16:33:55 UTC 2009


Acked-by: Koen Kooi <koen at openembedded.org>


On 20-04-09 17:25, Marcin Juszkiewicz wrote:
> From: Jeremy Lainé<jeremy.laine at m4x.org>
>
> ---
>   recipes/hostap/hostap-utils-0.4.7/ldflags.patch |   24 +++++++++++++++++++++++
>   recipes/hostap/hostap-utils_0.4.7.bb            |   24 ++++++++++++++++++++++-
>   2 files changed, 47 insertions(+), 1 deletions(-)
>   create mode 100644 recipes/hostap/hostap-utils-0.4.7/ldflags.patch
>
> diff --git a/recipes/hostap/hostap-utils-0.4.7/ldflags.patch b/recipes/hostap/hostap-utils-0.4.7/ldflags.patch
> new file mode 100644
> index 0000000..d2ca298
> --- /dev/null
> +++ b/recipes/hostap/hostap-utils-0.4.7/ldflags.patch
> @@ -0,0 +1,24 @@
> +diff -urN hostap-utils-0.4.7.orig/Makefile hostap-utils-0.4.7/Makefile
> +--- hostap-utils-0.4.7.orig/Makefile	2005-01-01 06:42:51.000000000 +0000
> ++++ hostap-utils-0.4.7/Makefile	2009-04-08 08:36:46.000000000 +0000
> +@@ -14,17 +14,17 @@
> + hostap_crypt_conf: hostap_crypt_conf.c
> +
> + hostap_diag: hostap_diag.o util.o
> +-	$(CC) -o hostap_diag $(CFLAGS) hostap_diag.o util.o
> ++	$(CC) -o hostap_diag $(CFLAGS) $(LDFLAGS) hostap_diag.o util.o
> +
> + hostap_diag.o: hostap_diag.c util.h
> +
> + util.o: util.c util.h
> +
> + hostap_io_debug: hostap_io_debug.c
> +-	$(CC) -o hostap_io_debug $(CFLAGS) hostap_io_debug.c
> ++	$(CC) -o hostap_io_debug $(CFLAGS) $(LDFLAGS) hostap_io_debug.c
> +
> + hostap_rid: hostap_rid.o util.o
> +-	$(CC) -o hostap_rid $(CFLAGS) hostap_rid.o util.o
> ++	$(CC) -o hostap_rid $(CFLAGS) $(LDFLAGS) hostap_rid.o util.o
> +
> + hostap_rid.o: hostap_rid.c util.h
> +
> diff --git a/recipes/hostap/hostap-utils_0.4.7.bb b/recipes/hostap/hostap-utils_0.4.7.bb
> index 9fe362b..5635947 100644
> --- a/recipes/hostap/hostap-utils_0.4.7.bb
> +++ b/recipes/hostap/hostap-utils_0.4.7.bb
> @@ -1 +1,23 @@
> -require hostap-utils.inc
> +DESCRIPTION = "User mode helpers for the hostap driver"
> +HOMEPAGE = "http://hostap.epitest.fi"
> +SECTION = "kernel/userland"
> +PRIORITY = "optional"
> +LICENSE = "GPL"
> +PR = "r6"
> +
> +SRC_URI = "http://hostap.epitest.fi/releases/hostap-utils-${PV}.tar.gz \
> +	   file://hostap-fw-load.patch;patch=1 \
> +	   file://ldflags.patch;patch=1"
> +
> +S = "${WORKDIR}/hostap-utils-${PV}"
> +
> +BINARIES = "hostap_crypt_conf hostap_diag hostap_fw_load hostap_io_debug \
> +	    hostap_rid prism2_param prism2_srec split_combined_hex"
> +
> +do_install() {
> +	install -d ${D}${sbindir}/
> +	for f in ${BINARIES}
> +	do
> +		install -m 0755 $f ${D}${sbindir}/
> +	done
> +}






More information about the Openembedded-devel mailing list