All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2][PULL] Fix Bug 603
@ 2011-02-11  9:11 Dongxiao Xu
  2011-02-11  9:11 ` [PATCH 1/2] wpa-supplicant: change dbus interface Dongxiao Xu
  2011-02-11  9:11 ` [PATCH 2/2] dbus: change owner and mode for dbus-daemon-launch-helper in postinst Dongxiao Xu
  0 siblings, 2 replies; 8+ messages in thread
From: Dongxiao Xu @ 2011-02-11  9:11 UTC (permalink / raw)
  To: poky

From: Dongxiao Xu <dongxiao.xu@intel.com>

Hi Saul,

This pull request fixes [BUGID #603], please help to review and pull.

Actually there are two bugs inside:

1) wpa_supplicant is not launched by default.
2) Even if manually launch wpa_supplicant, wifi interface still couldn't be enabled.

Some points to fix this issue:

1) Using new dbus interface in wpa_supplicant: "fi.w1.wpa_supplicant1"
2) Enable nl802.11 support in wpa_supplicant.
3) Fix the dbus-daemon-launch-helper permission issue.

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: dxu4/bugfix
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dxu4/bugfix

Thanks,
    Dongxiao Xu <dongxiao.xu@intel.com>
---


Dongxiao Xu (2):
  wpa-supplicant: change dbus interface
  dbus: change owner and mode for dbus-daemon-launch-helper in postinst

 .../wpa-supplicant-0.7.3/defconfig-gnutls          |    5 +++--
 .../wpa-supplicant/wpa-supplicant-0.7.inc          |    2 +-
 .../wpa-supplicant/wpa-supplicant_0.7.3.bb         |    2 +-
 meta/recipes-core/dbus/dbus.inc                    |    4 +++-
 meta/recipes-core/dbus/dbus_1.4.1.bb               |    2 +-
 5 files changed, 9 insertions(+), 6 deletions(-)



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

* [PATCH 1/2] wpa-supplicant: change dbus interface
  2011-02-11  9:11 [PATCH 0/2][PULL] Fix Bug 603 Dongxiao Xu
@ 2011-02-11  9:11 ` Dongxiao Xu
  2011-02-11 10:07   ` Stefan Schmidt
  2011-02-11  9:11 ` [PATCH 2/2] dbus: change owner and mode for dbus-daemon-launch-helper in postinst Dongxiao Xu
  1 sibling, 1 reply; 8+ messages in thread
From: Dongxiao Xu @ 2011-02-11  9:11 UTC (permalink / raw)
  To: poky

From: Dongxiao Xu <dongxiao.xu@intel.com>

The new interface "fi.w1.wpa_supplicant1" is used in latest connman,
thus change the wpa_supplicant default configuration.

Besides, enable netlink support with libnl 2.0 mode.

[BUGID #603]

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
---
 .../wpa-supplicant-0.7.3/defconfig-gnutls          |    5 +++--
 .../wpa-supplicant/wpa-supplicant-0.7.inc          |    2 +-
 .../wpa-supplicant/wpa-supplicant_0.7.3.bb         |    2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.3/defconfig-gnutls b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.3/defconfig-gnutls
index e325bb8..84bf68e 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.3/defconfig-gnutls
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.3/defconfig-gnutls
@@ -81,7 +81,8 @@ CONFIG_DRIVER_HOSTAP=y
 CONFIG_DRIVER_WEXT=y
 
 # Driver interface for Linux drivers using the nl80211 kernel interface
-#CONFIG_DRIVER_NL80211=y
+CONFIG_LIBNL20=y
+CONFIG_DRIVER_NL80211=y
 
 # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
 #CONFIG_DRIVER_BSD=y
@@ -404,4 +405,4 @@ CONFIG_PEERKEY=y
 #LIBS_c += -lbfd -liberty -lz
 CONFIG_TLS = gnutls
 CONFIG_GNUTLS_EXTRA=y
-CONFIG_CTRL_IFACE_DBUS=y
+CONFIG_CTRL_IFACE_DBUS_NEW=y
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 7865b8f..cd62d8f 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
@@ -6,7 +6,7 @@ LICENSE = "GPLv2 | BSD"
 LIC_FILES_CHKSUM = "file://../COPYING;md5=c54ce9345727175ff66d17b67ff51f58 \
                     file://../README;md5=54cfc88015d3ce83f7156e63c6bb1738 \
                     file://wpa_supplicant.c;beginline=1;endline=17;md5=acdc5a4b0d6345f21f136eace747260e"
-DEPENDS = "gnutls dbus"
+DEPENDS = "gnutls dbus libnl"
 RRECOMMENDS_${PN} = "wpa-supplicant-passphrase wpa-supplicant-cli"
 
 SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-${PV}.tar.gz \
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 87baf33..03bd937 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 = "r3"
+PR = "r4"
 
 SRC_URI[md5sum] = "f516f191384a9a546e3f5145c08addda"
 SRC_URI[sha256sum] = "d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443"
-- 
1.6.3.3



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

* [PATCH 2/2] dbus: change owner and mode for dbus-daemon-launch-helper in postinst
  2011-02-11  9:11 [PATCH 0/2][PULL] Fix Bug 603 Dongxiao Xu
  2011-02-11  9:11 ` [PATCH 1/2] wpa-supplicant: change dbus interface Dongxiao Xu
@ 2011-02-11  9:11 ` Dongxiao Xu
  1 sibling, 0 replies; 8+ messages in thread
From: Dongxiao Xu @ 2011-02-11  9:11 UTC (permalink / raw)
  To: poky

From: Dongxiao Xu <dongxiao.xu@intel.com>

Add code in dbus postinst to change owner and mode for
dbus-daemon-launch-helper.

[BUGID #603]

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
---
 meta/recipes-core/dbus/dbus.inc      |    4 +++-
 meta/recipes-core/dbus/dbus_1.4.1.bb |    2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc
index da77819..1ef0d8f 100644
--- a/meta/recipes-core/dbus/dbus.inc
+++ b/meta/recipes-core/dbus/dbus.inc
@@ -53,7 +53,9 @@ pkg_postinst_dbus() {
 			--ingroup "$MESSAGEUSER" "$MESSAGEUSER"
 
 	grep -q netdev: /etc/group || addgroup netdev
-	chmod u+s /usr/libexec/dbus-daemon-launch-helper
+
+	chown root:"$MESSAGEUSER" /usr/libexec/dbus-daemon-launch-helper
+	chmod 4754 /usr/libexec/dbus-daemon-launch-helper
 
 	# add volatile after new user/grp are created
 	echo "d messagebus messagebus 0755 /var/run/dbus none" > /etc/default/volatiles/99_dbus
diff --git a/meta/recipes-core/dbus/dbus_1.4.1.bb b/meta/recipes-core/dbus/dbus_1.4.1.bb
index 7c5627b..f16d9f2 100644
--- a/meta/recipes-core/dbus/dbus_1.4.1.bb
+++ b/meta/recipes-core/dbus/dbus_1.4.1.bb
@@ -1,6 +1,6 @@
 include dbus.inc
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI[md5sum] = "99cb057700c0455fb68f8d57902f77ac"
 SRC_URI[sha256sum] = "caa1a0ded2d0f2e95c1d4ec7e3c8bd44834928c5b0ed41a7189963f3593983bd"
-- 
1.6.3.3



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

* Re: [PATCH 1/2] wpa-supplicant: change dbus interface
  2011-02-11  9:11 ` [PATCH 1/2] wpa-supplicant: change dbus interface Dongxiao Xu
@ 2011-02-11 10:07   ` Stefan Schmidt
  2011-02-14  0:55     ` Xu, Dongxiao
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Schmidt @ 2011-02-11 10:07 UTC (permalink / raw)
  To: poky

Hello.

On Fri, 2011-02-11 at 17:11, Dongxiao Xu wrote:
> From: Dongxiao Xu <dongxiao.xu@intel.com>
> 
>  # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
>  #CONFIG_DRIVER_BSD=y
> @@ -404,4 +405,4 @@ CONFIG_PEERKEY=y
>  #LIBS_c += -lbfd -liberty -lz
>  CONFIG_TLS = gnutls
>  CONFIG_GNUTLS_EXTRA=y
> -CONFIG_CTRL_IFACE_DBUS=y
> +CONFIG_CTRL_IFACE_DBUS_NEW=y

Any reason not enable both dbus interfaces? They can happily life next to each
other. Thats how I did it in OE.

> 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 7865b8f..cd62d8f 100644
> --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
> +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
> @@ -6,7 +6,7 @@ LICENSE = "GPLv2 | BSD"
>  LIC_FILES_CHKSUM = "file://../COPYING;md5=c54ce9345727175ff66d17b67ff51f58 \
>                      file://../README;md5=54cfc88015d3ce83f7156e63c6bb1738 \
>                      file://wpa_supplicant.c;beginline=1;endline=17;md5=acdc5a4b0d6345f21f136eace747260e"
> -DEPENDS = "gnutls dbus"
> +DEPENDS = "gnutls dbus libnl"

Hmm, does poky onl yhave libnl2 recipes or both libnl and libnl2?

If the later you should depend on libnl2 instead. I'm trying to get rid of these
libnl mess in OE and getting all packges over to libnl2. Would be great if we
could share resources here. The iw package for example can also be switched
easily.

I fear I only have time to send patches to poky after the OE release in march.
If you want to cherry-pick (if possible) patches that of course fine.

regards
Stefan Schmidt


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

* Re: [PATCH 1/2] wpa-supplicant: change dbus interface
  2011-02-11 10:07   ` Stefan Schmidt
@ 2011-02-14  0:55     ` Xu, Dongxiao
  2011-02-14  7:31       ` Stefan Schmidt
  0 siblings, 1 reply; 8+ messages in thread
From: Xu, Dongxiao @ 2011-02-14  0:55 UTC (permalink / raw)
  To: Stefan Schmidt, poky

Hi Stefan,

Stefan Schmidt wrote:
> Hello.
> 
> On Fri, 2011-02-11 at 17:11, Dongxiao Xu wrote:
>> From: Dongxiao Xu <dongxiao.xu@intel.com>
>> 
>>  # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
>> #CONFIG_DRIVER_BSD=y @@ -404,4 +405,4 @@ CONFIG_PEERKEY=y  #LIBS_c +=
>> -lbfd -liberty -lz  CONFIG_TLS = gnutls  CONFIG_GNUTLS_EXTRA=y
>> -CONFIG_CTRL_IFACE_DBUS=y
>> +CONFIG_CTRL_IFACE_DBUS_NEW=y
> 
> Any reason not enable both dbus interfaces? They can happily life
> next to each other. Thats how I did it in OE. 

It is OK for me to enable both options. I will change it in my next pull request.

> 
>> 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 7865b8f..cd62d8f 100644
>> --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
>> +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
>> @@ -6,7 +6,7 @@ LICENSE = "GPLv2 | BSD"
>>  LIC_FILES_CHKSUM =
>>                     
>>                     
>> "file://../COPYING;md5=c54ce9345727175ff66d17b67ff51f58 \
>> file://../README;md5=54cfc88015d3ce83f7156e63c6bb1738 \
>> file://wpa_supplicant.c;beginline=1;endline=17;md5=acdc5a4b0d6345f21f136eace747260e"
>> -DEPENDS = "gnutls dbus" +DEPENDS = "gnutls dbus libnl"   
> 
> Hmm, does poky onl yhave libnl2 recipes or both libnl and libnl2?
> 
> If the later you should depend on libnl2 instead. I'm trying to get
> rid of these libnl mess in OE and getting all packges over to libnl2.
> Would be great if we could share resources here. The iw package for
> example can also be switched easily.   

Currently, Poky only has libnl2, and recipe name is libnl_2.0.bb, thus I added "libnl" as the wpa_supplicant's DEPENDS.

Something intersting that, though APIs are incompatible between libnl and libnl2, we didn't see build issues except this wpa_supplicant case when upgrading libnl from 1.1 to 2.0. 

Could you list some OE packages which need libnl 1.1 as examples? We can check if we have included them in our current Poky build.

Thanks,
Dongxiao

> 
> I fear I only have time to send patches to poky after the OE release
> in march. 
> If you want to cherry-pick (if possible) patches that of course fine.
> 
> regards
> Stefan Schmidt
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky



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

* Re: [PATCH 1/2] wpa-supplicant: change dbus interface
  2011-02-14  0:55     ` Xu, Dongxiao
@ 2011-02-14  7:31       ` Stefan Schmidt
  2011-02-14  7:34         ` Xu, Dongxiao
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Schmidt @ 2011-02-14  7:31 UTC (permalink / raw)
  To: Xu, Dongxiao; +Cc: poky

Hello.

On Mon, 2011-02-14 at 08:55, Xu, Dongxiao wrote:
> 
> Stefan Schmidt wrote:
> > Hello.
> > 
> > On Fri, 2011-02-11 at 17:11, Dongxiao Xu wrote:
> >> From: Dongxiao Xu <dongxiao.xu@intel.com>
> >> 
> >>  # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
> >> #CONFIG_DRIVER_BSD=y @@ -404,4 +405,4 @@ CONFIG_PEERKEY=y  #LIBS_c +=
> >> -lbfd -liberty -lz  CONFIG_TLS = gnutls  CONFIG_GNUTLS_EXTRA=y
> >> -CONFIG_CTRL_IFACE_DBUS=y
> >> +CONFIG_CTRL_IFACE_DBUS_NEW=y
> > 
> > Any reason not enable both dbus interfaces? They can happily life
> > next to each other. Thats how I did it in OE. 
> 
> It is OK for me to enable both options. I will change it in my next pull request.

Thanks.

> >> 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 7865b8f..cd62d8f 100644
> >> --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
> >> +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
> >> @@ -6,7 +6,7 @@ LICENSE = "GPLv2 | BSD"
> >>  LIC_FILES_CHKSUM =
> >>                     
> >>                     
> >> "file://../COPYING;md5=c54ce9345727175ff66d17b67ff51f58 \
> >> file://../README;md5=54cfc88015d3ce83f7156e63c6bb1738 \
> >> file://wpa_supplicant.c;beginline=1;endline=17;md5=acdc5a4b0d6345f21f136eace747260e"
> >> -DEPENDS = "gnutls dbus" +DEPENDS = "gnutls dbus libnl"   
> > 
> > Hmm, does poky onl yhave libnl2 recipes or both libnl and libnl2?
> > 
> > If the later you should depend on libnl2 instead. I'm trying to get
> > rid of these libnl mess in OE and getting all packges over to libnl2.
> > Would be great if we could share resources here. The iw package for
> > example can also be switched easily.   
> 
> Currently, Poky only has libnl2, and recipe name is libnl_2.0.bb, thus I added "libnl" as the wpa_supplicant's DEPENDS.

That explains it. So libnl is fine in your case. In OE we have it named
libnl2_2.0.bb to not clash with the libnl recipes.

> Something intersting that, though APIs are incompatible between libnl and libnl2, we didn't see build issues
> except this wpa_supplicant case when upgrading libnl from 1.1 to 2.0.

I would expect that Poky does not have any recipes included that only support
the old libnl version. See the list below.

> Could you list some OE packages which need libnl 1.1 as examples? We can check if we have included them in our current Poky build.

bmon
ibrdtn
lowpan-tools
networkmanager
networkmanager-openvpn

That are the ones that come in mind quickly. The first three are not in  Poky
(at least as afar as I know). For the networkmanager part I would be interested
how you got it working with libnl2.

regards
Stefan Schmidt


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

* Re: [PATCH 1/2] wpa-supplicant: change dbus interface
  2011-02-14  7:31       ` Stefan Schmidt
@ 2011-02-14  7:34         ` Xu, Dongxiao
  2011-02-14  8:07           ` Stefan Schmidt
  0 siblings, 1 reply; 8+ messages in thread
From: Xu, Dongxiao @ 2011-02-14  7:34 UTC (permalink / raw)
  To: Stefan Schmidt; +Cc: poky

Stefan Schmidt wrote:
> Hello.
> 
> On Mon, 2011-02-14 at 08:55, Xu, Dongxiao wrote:
>> 
>> Stefan Schmidt wrote:
>>> Hello.
>>> 
>>> On Fri, 2011-02-11 at 17:11, Dongxiao Xu wrote:
>>>> From: Dongxiao Xu <dongxiao.xu@intel.com>
>>>> 
>>>>  # Driver interface for FreeBSD net80211 layer (e.g., Atheros
>>>> driver) #CONFIG_DRIVER_BSD=y @@ -404,4 +405,4 @@ CONFIG_PEERKEY=y
>>>> #LIBS_c += -lbfd -liberty -lz  CONFIG_TLS = gnutls
>>>> CONFIG_GNUTLS_EXTRA=y -CONFIG_CTRL_IFACE_DBUS=y
>>>> +CONFIG_CTRL_IFACE_DBUS_NEW=y
>>> 
>>> Any reason not enable both dbus interfaces? They can happily life
>>> next to each other. Thats how I did it in OE.
>> 
>> It is OK for me to enable both options. I will change it in my next
>> pull request. 
> 
> Thanks.
> 
>>>> 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 7865b8f..cd62d8f 100644 ---
>>>> a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc
>>>> +++
>>>> b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.i
>>>>  +++ nc @@ -6,7 +6,7 @@ LICENSE = "GPLv2 | BSD" LIC_FILES_CHKSUM =
>>>> 
>>>> 
>>>> "file://../COPYING;md5=c54ce9345727175ff66d17b67ff51f58 \
>>>> file://../README;md5=54cfc88015d3ce83f7156e63c6bb1738 \
>>>> file://wpa_supplicant.c;beginline=1;endline=17;md5=acdc5a4b0d6345f21f136eace747260e"
>>>> -DEPENDS = "gnutls dbus" +DEPENDS = "gnutls dbus libnl"
>>> 
>>> Hmm, does poky onl yhave libnl2 recipes or both libnl and libnl2?
>>> 
>>> If the later you should depend on libnl2 instead. I'm trying to get
>>> rid of these libnl mess in OE and getting all packges over to
>>> libnl2. Would be great if we could share resources here. The iw
>>> package for example can also be switched easily.
>> 
>> Currently, Poky only has libnl2, and recipe name is libnl_2.0.bb,
>> thus I added "libnl" as the wpa_supplicant's DEPENDS. 
> 
> That explains it. So libnl is fine in your case. In OE we have it
> named libnl2_2.0.bb to not clash with the libnl recipes. 
> 
>> Something intersting that, though APIs are incompatible between libnl
>> and libnl2, we didn't see build issues except this wpa_supplicant
>> case when upgrading libnl from 1.1 to 2.0. 
> 
> I would expect that Poky does not have any recipes included that only
> support the old libnl version. See the list below. 
> 
>> Could you list some OE packages which need libnl 1.1 as examples? We
>> can check if we have included them in our current Poky build. 
> 
> bmon
> ibrdtn
> lowpan-tools
> networkmanager
> networkmanager-openvpn
> 
> That are the ones that come in mind quickly. The first three are not
> in  Poky (at least as afar as I know). For the networkmanager part I
> would be interested how you got it working with libnl2.  

Actually networkmanager has beed deprecated and deleted in poky.
Now connman is the default network configuration tool.

Thanks,
Dongxiao

> 
> regards
> Stefan Schmidt



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

* Re: [PATCH 1/2] wpa-supplicant: change dbus interface
  2011-02-14  7:34         ` Xu, Dongxiao
@ 2011-02-14  8:07           ` Stefan Schmidt
  0 siblings, 0 replies; 8+ messages in thread
From: Stefan Schmidt @ 2011-02-14  8:07 UTC (permalink / raw)
  To: Xu, Dongxiao; +Cc: poky

Hello.

On Mon, 2011-02-14 at 15:34, Xu, Dongxiao wrote:
> Stefan Schmidt wrote:
> > 
> > That are the ones that come in mind quickly. The first three are not
> > in  Poky (at least as afar as I know). For the networkmanager part I
> > would be interested how you got it working with libnl2.  
> 
> Actually networkmanager has beed deprecated and deleted in poky.
> Now connman is the default network configuration tool.

Ah, that explains why you don't have problems with it. :)

regards
Stefan Schmidt


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

end of thread, other threads:[~2011-02-14  8:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-11  9:11 [PATCH 0/2][PULL] Fix Bug 603 Dongxiao Xu
2011-02-11  9:11 ` [PATCH 1/2] wpa-supplicant: change dbus interface Dongxiao Xu
2011-02-11 10:07   ` Stefan Schmidt
2011-02-14  0:55     ` Xu, Dongxiao
2011-02-14  7:31       ` Stefan Schmidt
2011-02-14  7:34         ` Xu, Dongxiao
2011-02-14  8:07           ` Stefan Schmidt
2011-02-11  9:11 ` [PATCH 2/2] dbus: change owner and mode for dbus-daemon-launch-helper in postinst Dongxiao Xu

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.