* [PATCH] wpa-supplicant 0.7: fix GNU HASH QA issue
@ 2011-01-07 16:36 Koen Kooi
2011-01-08 10:17 ` [PATCH] wpa-supplicant 0.7.3: fix dbus service activation Koen Kooi
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Koen Kooi @ 2011-01-07 16:36 UTC (permalink / raw)
To: poky
From: Koen Kooi <koen@dominion.thruhere.net>
The recipe was unsetting LDFLAGS, resulting in:
NOTE: QA Issue: No GNU_HASH in the elf binary: '/OE/tentacle/build/tmp-angstrom_2010_x/work/armv7a-angstrom-linux-gnueabi/wpa-supplicant-0.7.3-r0/packages-split/wpa-supplicant/usr/sbin/wpa_supplicant'
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
.../wpa-supplicant/wpa-supplicant-0.7.inc | 2 +-
.../wpa-supplicant/wpa-supplicant_0.7.3.bb | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
index 78ce914..6eda3b1 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
@@ -29,7 +29,7 @@ do_configure () {
export EXTRA_CFLAGS = "${CFLAGS}"
do_compile () {
- unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
+ unset CFLAGS CPPFLAGS CXXFLAGS
oe_runmake
}
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
index 2d7729c..e4ae019 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
@@ -1,6 +1,6 @@
require wpa-supplicant-0.7.inc
-PR = "r0"
+PR = "r1"
SRC_URI[md5sum] = "f516f191384a9a546e3f5145c08addda"
SRC_URI[sha256sum] = "d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443"
--
1.6.6.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] wpa-supplicant 0.7.3: fix dbus service activation
2011-01-07 16:36 [PATCH] wpa-supplicant 0.7: fix GNU HASH QA issue Koen Kooi
@ 2011-01-08 10:17 ` Koen Kooi
2011-01-11 12:29 ` [PATCH] wpa-supplicant 0.7: fix GNU HASH QA issue Koen Kooi
2011-01-12 21:59 ` Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2011-01-08 10:17 UTC (permalink / raw)
To: poky
From: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
.../wpa-supplicant/wpa-supplicant-0.7.inc | 3 +++
.../wpa-supplicant/wpa-supplicant_0.7.3.bb | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
index 6eda3b1..c91af45 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
@@ -56,6 +56,9 @@ do_install () {
install -d ${D}/${sysconfdir}/dbus-1/system.d
install -m 644 ${S}/dbus/dbus-wpa_supplicant.conf ${D}/${sysconfdir}/dbus-1/system.d
+ install -d ${D}/${datadir}/dbus-1/system-services
+ sed -i -e s:${base_sbindir}:${sbindir}:g ${S}/dbus/*.service
+ install -m 644 ${S}/dbus/*.service ${D}/${datadir}/dbus-1/system-services
install -d ${D}/etc/default/volatiles
install -m 0644 ${WORKDIR}/99_wpa_supplicant ${D}/etc/default/volatiles
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
index e4ae019..2dca594 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
@@ -1,6 +1,6 @@
require wpa-supplicant-0.7.inc
-PR = "r1"
+PR = "r2"
SRC_URI[md5sum] = "f516f191384a9a546e3f5145c08addda"
SRC_URI[sha256sum] = "d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443"
--
1.6.6.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] wpa-supplicant 0.7: fix GNU HASH QA issue
2011-01-07 16:36 [PATCH] wpa-supplicant 0.7: fix GNU HASH QA issue Koen Kooi
2011-01-08 10:17 ` [PATCH] wpa-supplicant 0.7.3: fix dbus service activation Koen Kooi
@ 2011-01-11 12:29 ` Koen Kooi
2011-01-12 21:59 ` Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2011-01-11 12:29 UTC (permalink / raw)
To: poky
Ping on both wpa-supplicant patches
Op 7 jan 2011, om 17:36 heeft Koen Kooi het volgende geschreven:
> From: Koen Kooi <koen@dominion.thruhere.net>
>
> The recipe was unsetting LDFLAGS, resulting in:
>
> NOTE: QA Issue: No GNU_HASH in the elf binary: '/OE/tentacle/build/tmp-angstrom_2010_x/work/armv7a-angstrom-linux-gnueabi/wpa-supplicant-0.7.3-r0/packages-split/wpa-supplicant/usr/sbin/wpa_supplicant'
>
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> ---
> .../wpa-supplicant/wpa-supplicant-0.7.inc | 2 +-
> .../wpa-supplicant/wpa-supplicant_0.7.3.bb | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
> index 78ce914..6eda3b1 100644
> --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
> +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
> @@ -29,7 +29,7 @@ do_configure () {
>
> export EXTRA_CFLAGS = "${CFLAGS}"
> do_compile () {
> - unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
> + unset CFLAGS CPPFLAGS CXXFLAGS
> oe_runmake
> }
>
> diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
> index 2d7729c..e4ae019 100644
> --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
> +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
> @@ -1,6 +1,6 @@
> require wpa-supplicant-0.7.inc
>
> -PR = "r0"
> +PR = "r1"
>
> SRC_URI[md5sum] = "f516f191384a9a546e3f5145c08addda"
> SRC_URI[sha256sum] = "d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443"
> --
> 1.6.6.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] wpa-supplicant 0.7: fix GNU HASH QA issue
2011-01-07 16:36 [PATCH] wpa-supplicant 0.7: fix GNU HASH QA issue Koen Kooi
2011-01-08 10:17 ` [PATCH] wpa-supplicant 0.7.3: fix dbus service activation Koen Kooi
2011-01-11 12:29 ` [PATCH] wpa-supplicant 0.7: fix GNU HASH QA issue Koen Kooi
@ 2011-01-12 21:59 ` Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2011-01-12 21:59 UTC (permalink / raw)
To: Koen Kooi; +Cc: poky
On 01/07/2011 08:36 AM, Koen Kooi wrote:
> From: Koen Kooi<koen@dominion.thruhere.net>
>
> The recipe was unsetting LDFLAGS, resulting in:
>
> NOTE: QA Issue: No GNU_HASH in the elf binary: '/OE/tentacle/build/tmp-angstrom_2010_x/work/armv7a-angstrom-linux-gnueabi/wpa-supplicant-0.7.3-r0/packages-split/wpa-supplicant/usr/sbin/wpa_supplicant'
>
> Signed-off-by: Koen Kooi<koen@dominion.thruhere.net>
> ---
> .../wpa-supplicant/wpa-supplicant-0.7.inc | 2 +-
> .../wpa-supplicant/wpa-supplicant_0.7.3.bb | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
> index 78ce914..6eda3b1 100644
> --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
> +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
> @@ -29,7 +29,7 @@ do_configure () {
>
> export EXTRA_CFLAGS = "${CFLAGS}"
> do_compile () {
> - unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
> + unset CFLAGS CPPFLAGS CXXFLAGS
> oe_runmake
> }
>
> diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
> index 2d7729c..e4ae019 100644
> --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
> +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.7.3.bb
> @@ -1,6 +1,6 @@
> require wpa-supplicant-0.7.inc
>
> -PR = "r0"
> +PR = "r1"
>
> SRC_URI[md5sum] = "f516f191384a9a546e3f5145c08addda"
> SRC_URI[sha256sum] = "d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443"
Both your WPA_Aupplicant change are pulled into master
Thanks for your help
Sau!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-01-12 21:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-07 16:36 [PATCH] wpa-supplicant 0.7: fix GNU HASH QA issue Koen Kooi
2011-01-08 10:17 ` [PATCH] wpa-supplicant 0.7.3: fix dbus service activation Koen Kooi
2011-01-11 12:29 ` [PATCH] wpa-supplicant 0.7: fix GNU HASH QA issue Koen Kooi
2011-01-12 21:59 ` Saul Wold
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.