Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/6 v4][PULL] 3G network support
@ 2011-06-29  2:59 Dongxiao Xu
  2011-06-29  2:59 ` [PATCH 1/6] connman: Upgrade to version 0.75 Dongxiao Xu
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Dongxiao Xu @ 2011-06-29  2:59 UTC (permalink / raw)
  To: openembedded-core

Hi,

This is the 4th version of 3G patches, please help to review and pull.

Changes from v3:
1) Use DISTRO_FEATURE to handle the dependency of ofono.
2) Adopt ofono 0.50 version which could work with Ericsson modem.
   (ofono's commit d99ca17 fixed the crash issue)

Thanks,
Dongxiao

The following changes since commit a4f3e006e1f2fd93f156012af2a05adccf41d065:

  u-boot-mkimage: bump version to 2011.03 (2011-06-28 17:13:19 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib dxu4/ggg-v4
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dxu4/ggg-v4

Dongxiao Xu (6):
  connman: Upgrade to version 0.75
  wpa-supplicant: remove the 0.6.10 version.
  ofono: upgrade to version 0.50
  connman-gnome: Add 3G configuration support
  initscript: Change some order of init scripts
  task-base: add 3G into DISTRO_FEATURE

 meta/conf/distro/include/default-distrovars.inc    |    2 +-
 meta/conf/distro/include/default-versions.inc      |    4 -
 .../connman-0.65/fix-shutdown-ap-disconnect.patch  |   42 --
 .../add_xuser_dbus_permission.patch                |    2 +
 .../connman/{connman-0.65 => connman-0.75}/connman |    0
 .../{connman-0.65 => connman-0.75}/dbusperms.patch |    2 +
 .../connman/connman-gnome/3g.patch                 |  505 ++++++++++++++
 .../connman/connman-gnome_0.5.bb                   |    8 +-
 meta/recipes-connectivity/connman/connman.inc      |   14 +-
 .../connman/{connman_0.65.bb => connman_0.75.bb}   |    8 +-
 meta/recipes-connectivity/ofono/ofono.inc          |    2 +
 meta/recipes-connectivity/ofono/ofono_0.45.bb      |    9 -
 meta/recipes-connectivity/ofono/ofono_0.50.bb      |   13 +
 .../wpa-supplicant-0.6.10/99_wpa_supplicant        |    1 -
 .../wpa-supplicant-0.6.10/defaults-sane            |    8 -
 .../wpa-supplicant-0.6.10/defconfig-0.6.0-gnutls   |  180 -----
 .../wpa-supplicant-0.6.10/wpa-supplicant.sh        |   85 ---
 .../wpa-supplicant-0.6.10/wpa_supplicant.conf      |  690 --------------------
 .../wpa-supplicant-0.6.10/wpa_supplicant.conf-sane |    7 -
 .../wpa-supplicant/wpa-supplicant-0.6.inc          |   83 ---
 .../wpa-supplicant/wpa-supplicant_0.6.10.bb        |    4 -
 meta/recipes-core/initscripts/initscripts_1.0.bb   |    6 +-
 meta/recipes-core/tasks/task-base.bb               |   16 +-
 meta/recipes-core/udev/udev-new.inc                |    2 +-
 meta/recipes-core/udev/udev_164.bb                 |    2 +-
 .../modutils/modutils-initscripts.bb               |    4 +-
 26 files changed, 568 insertions(+), 1131 deletions(-)
 delete mode 100644 meta/recipes-connectivity/connman/connman-0.65/fix-shutdown-ap-disconnect.patch
 rename meta/recipes-connectivity/connman/{connman-0.65 => connman-0.75}/add_xuser_dbus_permission.patch (94%)
 rename meta/recipes-connectivity/connman/{connman-0.65 => connman-0.75}/connman (100%)
 rename meta/recipes-connectivity/connman/{connman-0.65 => connman-0.75}/dbusperms.patch (91%)
 create mode 100644 meta/recipes-connectivity/connman/connman-gnome/3g.patch
 rename meta/recipes-connectivity/connman/{connman_0.65.bb => connman_0.75.bb} (74%)
 delete mode 100644 meta/recipes-connectivity/ofono/ofono_0.45.bb
 create mode 100644 meta/recipes-connectivity/ofono/ofono_0.50.bb
 delete mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/99_wpa_supplicant
 delete mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/defaults-sane
 delete mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/defconfig-0.6.0-gnutls
 delete mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/wpa-supplicant.sh
 delete mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/wpa_supplicant.conf
 delete mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/wpa_supplicant.conf-sane
 delete mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.inc
 delete mode 100644 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_0.6.10.bb




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

end of thread, other threads:[~2011-06-29 13:51 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-29  2:59 [PATCH 0/6 v4][PULL] 3G network support Dongxiao Xu
2011-06-29  2:59 ` [PATCH 1/6] connman: Upgrade to version 0.75 Dongxiao Xu
2011-06-29  2:59 ` [PATCH 2/6] wpa-supplicant: remove the 0.6.10 version Dongxiao Xu
2011-06-29  2:59 ` [PATCH 3/6] ofono: upgrade to version 0.50 Dongxiao Xu
2011-06-29  2:59 ` [PATCH 4/6] connman-gnome: Add 3G configuration support Dongxiao Xu
2011-06-29  2:59 ` [PATCH 5/6] initscript: Change some order of init scripts Dongxiao Xu
2011-06-29  2:59 ` [PATCH 6/6] task-base: add 3G into DISTRO_FEATURE Dongxiao Xu
2011-06-29 13:47 ` [PATCH 0/6 v4][PULL] 3G network support Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox