* [PATCH 0/5] Patches from O.S. Systems' tree
@ 2012-04-22 19:15 Otavio Salvador
2012-04-22 19:15 ` [PATCH 1/5] connman: backport test script fixes Otavio Salvador
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Otavio Salvador @ 2012-04-22 19:15 UTC (permalink / raw)
To: openembedded-core
The u-boot new release has been tested on i.MX53 and has D_P = -1 to
allow people to test it. Please give them a test.
The following changes since commit b19af63a201933038a044f29570710fe38365f28:
self-hosted-image: Update poky revision to point at the 1.2 release branch (2012-04-22 16:07:44 +0100)
are available in the git repository at:
git://github.com/OSSystems/oe-core master
https://github.com/OSSystems/oe-core/tree/HEAD
Otavio Salvador (5):
connman: backport test script fixes
u-boot.inc: fix compilation when using 'gold' as linker
u-boot-fw-utils: add 2012.04 release
u-boot-mkimage: add 2012.04 release
u-boot: add 2012.04 release
meta/recipes-bsp/u-boot/u-boot-fw-utils_2012.04.bb | 33 ++++++++++++
meta/recipes-bsp/u-boot/u-boot-mkimage_2012.04.bb | 33 ++++++++++++
meta/recipes-bsp/u-boot/u-boot.inc | 4 ++
meta/recipes-bsp/u-boot/u-boot_2012.04.bb | 30 +++++++++++
.../connman/test-set-ipv4-method-api-fix.patch | 50 ++++++++++++++++++
.../connman/test-set-ipv6-method-api-fix.patch | 55 ++++++++++++++++++++
meta/recipes-connectivity/connman/connman_0.79.bb | 4 +-
7 files changed, 208 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-bsp/u-boot/u-boot-fw-utils_2012.04.bb
create mode 100644 meta/recipes-bsp/u-boot/u-boot-mkimage_2012.04.bb
create mode 100644 meta/recipes-bsp/u-boot/u-boot_2012.04.bb
create mode 100644 meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch
create mode 100644 meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch
--
1.7.2.5
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/5] connman: backport test script fixes
2012-04-22 19:15 [PATCH 0/5] Patches from O.S. Systems' tree Otavio Salvador
@ 2012-04-22 19:15 ` Otavio Salvador
2012-04-22 19:15 ` [PATCH 2/5] u-boot.inc: fix compilation when using 'gold' as linker Otavio Salvador
` (4 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Otavio Salvador @ 2012-04-22 19:15 UTC (permalink / raw)
To: openembedded-core
Those fixes are required to get the test scripts to work with current
0.79 DBus API.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
.../connman/test-set-ipv4-method-api-fix.patch | 50 ++++++++++++++++++
.../connman/test-set-ipv6-method-api-fix.patch | 55 ++++++++++++++++++++
meta/recipes-connectivity/connman/connman_0.79.bb | 4 +-
3 files changed, 108 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch
create mode 100644 meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch
diff --git a/meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch b/meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch
new file mode 100644
index 0000000..78eb19a
--- /dev/null
+++ b/meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch
@@ -0,0 +1,50 @@
+From 0b817dd3096f5c3ca8f0b868ee55ea550054137b Mon Sep 17 00:00:00 2001
+From: Daniel Wagner <daniel.wagner@bmw-carit.de>
+Date: Mon, 19 Mar 2012 14:03:27 +0100
+Subject: [PATCH 3/3] set-ipv4-method: The arguments have to be wrapped into a
+ variant
+
+Fixes BMC#24986
+
+Upstream-Status: Backport
+
+Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
+---
+ test/set-ipv4-method | 11 +++++++----
+ 1 file changed, 7 insertions(+), 4 deletions(-)
+
+diff --git a/test/set-ipv4-method b/test/set-ipv4-method
+index 820b24b..235113f 100755
+--- a/test/set-ipv4-method
++++ b/test/set-ipv4-method
+@@ -3,6 +3,9 @@
+ import sys
+ import dbus
+
++def make_variant(string):
++ return dbus.String(string, variant_level=1)
++
+ def print_usage():
+ print "Usage: %s <service> [off|dhcp|manual <address> [netmask] [gateway]]" % (sys.argv[0])
+
+@@ -20,13 +23,13 @@ properties = service.GetProperties()
+
+ print "Setting method %s for %s" % (sys.argv[2], sys.argv[1])
+
+-ipv4_configuration = { "Method": sys.argv[2] }
++ipv4_configuration = { "Method": make_variant(sys.argv[2]) }
+ if (len(sys.argv) > 3):
+- ipv4_configuration["Address"] = sys.argv[3]
++ ipv4_configuration["Address"] = make_variant(sys.argv[3])
+ if (len(sys.argv) > 4):
+- ipv4_configuration["Netmask"] = sys.argv[4]
++ ipv4_configuration["Netmask"] = make_variant(sys.argv[4])
+ if (len(sys.argv) > 5):
+- ipv4_configuration["Gateway"] = sys.argv[5]
++ ipv4_configuration["Gateway"] = make_variant(sys.argv[5])
+
+ service.SetProperty("IPv4.Configuration", ipv4_configuration)
+ print "New IPv4.Configuration: ", ipv4_configuration
+--
+1.7.9.5
+
diff --git a/meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch b/meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch
new file mode 100644
index 0000000..773127b
--- /dev/null
+++ b/meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch
@@ -0,0 +1,55 @@
+From 2885e71c9c0df7ea9866e91ab79d255eaa8de53d Mon Sep 17 00:00:00 2001
+From: Daniel Wagner <daniel.wagner@bmw-carit.de>
+Date: Mon, 19 Mar 2012 14:03:28 +0100
+Subject: [PATCH 2/3] set-ipv6-method: The arguments have to be wrapped into a
+ variant
+
+Fixes BMC#24986
+
+Upstream-Status: Backport
+
+Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
+---
+ test/set-ipv6-method | 13 ++++++++-----
+ 1 file changed, 8 insertions(+), 5 deletions(-)
+
+diff --git a/test/set-ipv6-method b/test/set-ipv6-method
+index 7f60b88..4f2de09 100755
+--- a/test/set-ipv6-method
++++ b/test/set-ipv6-method
+@@ -3,6 +3,9 @@
+ import sys
+ import dbus
+
++def make_variant(string):
++ return dbus.String(string, variant_level=1)
++
+ def print_usage():
+ print "Usage: %s <service> off|manual|auto [<address> [prefixlen] [gateway]] [<privacy>]" % (sys.argv[0])
+
+@@ -19,17 +22,17 @@ properties = service.GetProperties()
+
+ print "Setting method %s for %s" % (sys.argv[2], sys.argv[1])
+
+-ipv6_configuration = { "Method": sys.argv[2] }
++ipv6_configuration = { "Method": make_variant(sys.argv[2])}
+ if sys.argv[2] == "auto":
+ if (len(sys.argv) > 3):
+- ipv6_configuration["Privacy"] = sys.argv[3]
++ ipv6_configuration["Privacy"] = make_variant(sys.argv[3])
+ else:
+ if (len(sys.argv) > 3):
+- ipv6_configuration["Address"] = sys.argv[3]
++ ipv6_configuration["Address"] = make_variant(sys.argv[3])
+ if (len(sys.argv) > 4):
+- ipv6_configuration["PrefixLength"] = sys.argv[4]
++ ipv6_configuration["PrefixLength"] = make_variant(sys.argv[4])
+ if (len(sys.argv) > 5):
+- ipv6_configuration["Gateway"] = sys.argv[5]
++ ipv6_configuration["Gateway"] = make_variant(sys.argv[5])
+
+ service.SetProperty("IPv6.Configuration", ipv6_configuration)
+ print "New IPv6.Configuration: ", ipv6_configuration
+--
+1.7.9.5
+
diff --git a/meta/recipes-connectivity/connman/connman_0.79.bb b/meta/recipes-connectivity/connman/connman_0.79.bb
index f87c4dd..2ac8539 100644
--- a/meta/recipes-connectivity/connman/connman_0.79.bb
+++ b/meta/recipes-connectivity/connman/connman_0.79.bb
@@ -6,6 +6,8 @@ SRC_URI = "git://git.kernel.org/pub/scm/network/connman/connman.git \
file://add_xuser_dbus_permission.patch \
file://ethernet_default.patch \
file://disable_alg-test.patch \
+ file://test-set-ipv4-method-api-fix.patch \
+ file://test-set-ipv6-method-api-fix.patch \
file://connman"
S = "${WORKDIR}/git"
-PR = "r1"
+PR = "r2"
--
1.7.2.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/5] u-boot.inc: fix compilation when using 'gold' as linker
2012-04-22 19:15 [PATCH 0/5] Patches from O.S. Systems' tree Otavio Salvador
2012-04-22 19:15 ` [PATCH 1/5] connman: backport test script fixes Otavio Salvador
@ 2012-04-22 19:15 ` Otavio Salvador
2012-04-22 19:15 ` [PATCH 3/5] u-boot-fw-utils: add 2012.04 release Otavio Salvador
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Otavio Salvador @ 2012-04-22 19:15 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
meta/recipes-bsp/u-boot/u-boot.inc | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index 0445c34..a13eddc 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -36,6 +36,10 @@ SPL_IMAGE ?= "${SPL_BINARY}-${MACHINE}-${PV}-${PR}"
SPL_SYMLINK ?= "${SPL_BINARY}-${MACHINE}"
do_compile () {
+ if [ "${@base_contains('DISTRO_FEATURES', 'ld-is-gold', 'ld-is-gold', '', d)}" = "ld-is-gold" ] ; then
+ sed -i 's/$(CROSS_COMPILE)ld/$(CROSS_COMPILE)ld.bfd/g' config.mk
+ fi
+
unset LDFLAGS
unset CFLAGS
unset CPPFLAGS
--
1.7.2.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/5] u-boot-fw-utils: add 2012.04 release
2012-04-22 19:15 [PATCH 0/5] Patches from O.S. Systems' tree Otavio Salvador
2012-04-22 19:15 ` [PATCH 1/5] connman: backport test script fixes Otavio Salvador
2012-04-22 19:15 ` [PATCH 2/5] u-boot.inc: fix compilation when using 'gold' as linker Otavio Salvador
@ 2012-04-22 19:15 ` Otavio Salvador
2012-04-25 13:30 ` Wolfgang Denk
2012-04-22 19:15 ` [PATCH 4/5] u-boot-mkimage: " Otavio Salvador
` (2 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Otavio Salvador @ 2012-04-22 19:15 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
meta/recipes-bsp/u-boot/u-boot-fw-utils_2012.04.bb | 33 ++++++++++++++++++++
1 files changed, 33 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-bsp/u-boot/u-boot-fw-utils_2012.04.bb
diff --git a/meta/recipes-bsp/u-boot/u-boot-fw-utils_2012.04.bb b/meta/recipes-bsp/u-boot/u-boot-fw-utils_2012.04.bb
new file mode 100644
index 0000000..5ddb9f9
--- /dev/null
+++ b/meta/recipes-bsp/u-boot/u-boot-fw-utils_2012.04.bb
@@ -0,0 +1,33 @@
+DESCRIPTION = "U-boot bootloader fw_printenv/setenv utils"
+LICENSE = "GPLv2+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
+SECTION = "bootloader"
+
+DEPENDS = "mtd-utils"
+
+# This is needs to be validated among supported BSP's before we can
+# make it default
+DEFAULT_PREFERENCE = "-1"
+
+# This revision corresponds to the tag "v2012.04"
+# We use the revision in order to avoid having to fetch it from the
+# repo during parse
+SRCREV = "2790bf69dc12fb9aeb9836904e5f57c7f83d5552"
+
+PV = "v2012.04+git${SRCPV}"
+
+SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git"
+
+S = "${WORKDIR}/git"
+
+EXTRA_OEMAKE = 'HOSTCC="${CC}"'
+
+do_compile () {
+ oe_runmake env
+}
+
+do_install () {
+ install -d ${D}${base_sbindir}
+ install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_printenv
+ install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_setenv
+}
--
1.7.2.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 4/5] u-boot-mkimage: add 2012.04 release
2012-04-22 19:15 [PATCH 0/5] Patches from O.S. Systems' tree Otavio Salvador
` (2 preceding siblings ...)
2012-04-22 19:15 ` [PATCH 3/5] u-boot-fw-utils: add 2012.04 release Otavio Salvador
@ 2012-04-22 19:15 ` Otavio Salvador
2012-04-22 19:15 ` [PATCH 5/5] u-boot: " Otavio Salvador
2012-04-27 21:13 ` [PATCH 0/5] Patches from O.S. Systems' tree Saul Wold
5 siblings, 0 replies; 9+ messages in thread
From: Otavio Salvador @ 2012-04-22 19:15 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
meta/recipes-bsp/u-boot/u-boot-mkimage_2012.04.bb | 33 +++++++++++++++++++++
1 files changed, 33 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-bsp/u-boot/u-boot-mkimage_2012.04.bb
diff --git a/meta/recipes-bsp/u-boot/u-boot-mkimage_2012.04.bb b/meta/recipes-bsp/u-boot/u-boot-mkimage_2012.04.bb
new file mode 100644
index 0000000..9d59ef3
--- /dev/null
+++ b/meta/recipes-bsp/u-boot/u-boot-mkimage_2012.04.bb
@@ -0,0 +1,33 @@
+DESCRIPTION = "U-boot bootloader mkimage tool"
+LICENSE = "GPLv2+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
+SECTION = "bootloader"
+
+# This is needs to be validated among supported BSP's before we can
+# make it default
+DEFAULT_PREFERENCE = "-1"
+
+# This revision corresponds to the tag "v2012.04"
+# We use the revision in order to avoid having to fetch it from the
+# repo during parse
+SRCREV = "2790bf69dc12fb9aeb9836904e5f57c7f83d5552"
+
+PV = "v2012.04+git${SRCPV}"
+
+SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git"
+
+S = "${WORKDIR}/git"
+
+EXTRA_OEMAKE = 'HOSTCC="${CC}" HOSTLD="${LD}" HOSTLDFLAGS="${LDFLAGS}" HOSTSTRIP=true'
+
+do_compile () {
+ oe_runmake tools
+}
+
+do_install () {
+ install -d ${D}${bindir}
+ install -m 0755 tools/mkimage ${D}${bindir}/uboot-mkimage
+ ln -sf uboot-mkimage ${D}${bindir}/mkimage
+}
+
+BBCLASSEXTEND = "native nativesdk"
--
1.7.2.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 5/5] u-boot: add 2012.04 release
2012-04-22 19:15 [PATCH 0/5] Patches from O.S. Systems' tree Otavio Salvador
` (3 preceding siblings ...)
2012-04-22 19:15 ` [PATCH 4/5] u-boot-mkimage: " Otavio Salvador
@ 2012-04-22 19:15 ` Otavio Salvador
2012-04-27 21:13 ` [PATCH 0/5] Patches from O.S. Systems' tree Saul Wold
5 siblings, 0 replies; 9+ messages in thread
From: Otavio Salvador @ 2012-04-22 19:15 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
meta/recipes-bsp/u-boot/u-boot_2012.04.bb | 30 +++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-bsp/u-boot/u-boot_2012.04.bb
diff --git a/meta/recipes-bsp/u-boot/u-boot_2012.04.bb b/meta/recipes-bsp/u-boot/u-boot_2012.04.bb
new file mode 100644
index 0000000..92c636a
--- /dev/null
+++ b/meta/recipes-bsp/u-boot/u-boot_2012.04.bb
@@ -0,0 +1,30 @@
+require u-boot.inc
+
+# This is needs to be validated among supported BSP's before we can
+# make it default
+DEFAULT_PREFERENCE = "-1"
+
+# To build u-boot for your machine, provide the following lines in
+# your machine config, replacing the assignments as appropriate for
+# your machine.
+# UBOOT_MACHINE = "omap3_beagle_config"
+# UBOOT_ENTRYPOINT = "0x80008000"
+# UBOOT_LOADADDRESS = "0x80008000"
+
+LICENSE = "GPLv2+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
+
+FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
+
+# This revision corresponds to the tag "v2012.04"
+# We use the revision in order to avoid having to fetch it from the
+# repo during parse
+SRCREV = "2790bf69dc12fb9aeb9836904e5f57c7f83d5552"
+
+PV = "v2012.04+git${SRCPV}"
+
+SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git"
+
+S = "${WORKDIR}/git"
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
--
1.7.2.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 3/5] u-boot-fw-utils: add 2012.04 release
2012-04-22 19:15 ` [PATCH 3/5] u-boot-fw-utils: add 2012.04 release Otavio Salvador
@ 2012-04-25 13:30 ` Wolfgang Denk
2012-04-25 14:00 ` Otavio Salvador
0 siblings, 1 reply; 9+ messages in thread
From: Wolfgang Denk @ 2012-04-25 13:30 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer, Otavio Salvador
Dear Otavio Salvador,
In message <0d6637cfcd02587fe62c2c550aac5a33ce9cc72d.1335118370.git.otavio@ossystems.com.br> you wrote:
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> ---
> meta/recipes-bsp/u-boot/u-boot-fw-utils_2012.04.bb | 33 ++++++++++++++++++++
> 1 files changed, 33 insertions(+), 0 deletions(-)
> create mode 100644 meta/recipes-bsp/u-boot/u-boot-fw-utils_2012.04.bb
Please update and use v2012.04.01 instead. This is a bug fix release
which fixes a nasty bug in the command line processing, which can
cause incorrect execution of commands and scripts.
Thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de
"Out of register space (ugh)"
- vi
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 3/5] u-boot-fw-utils: add 2012.04 release
2012-04-25 13:30 ` Wolfgang Denk
@ 2012-04-25 14:00 ` Otavio Salvador
0 siblings, 0 replies; 9+ messages in thread
From: Otavio Salvador @ 2012-04-25 14:00 UTC (permalink / raw)
To: Wolfgang Denk; +Cc: Patches and discussions about the oe-core layer
On Wed, Apr 25, 2012 at 10:30, Wolfgang Denk <wd@denx.de> wrote:
> Please update and use v2012.04.01 instead. This is a bug fix release
> which fixes a nasty bug in the command line processing, which can
> cause incorrect execution of commands and scripts.
Once I get back to office, I prepare a patchset to update it.
Thanks by warn us.
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/5] Patches from O.S. Systems' tree
2012-04-22 19:15 [PATCH 0/5] Patches from O.S. Systems' tree Otavio Salvador
` (4 preceding siblings ...)
2012-04-22 19:15 ` [PATCH 5/5] u-boot: " Otavio Salvador
@ 2012-04-27 21:13 ` Saul Wold
5 siblings, 0 replies; 9+ messages in thread
From: Saul Wold @ 2012-04-27 21:13 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 04/22/2012 12:15 PM, Otavio Salvador wrote:
> The u-boot new release has been tested on i.MX53 and has D_P = -1 to
> allow people to test it. Please give them a test.
>
> The following changes since commit b19af63a201933038a044f29570710fe38365f28:
>
> self-hosted-image: Update poky revision to point at the 1.2 release branch (2012-04-22 16:07:44 +0100)
>
> are available in the git repository at:
> git://github.com/OSSystems/oe-core master
> https://github.com/OSSystems/oe-core/tree/HEAD
>
> Otavio Salvador (5):
> connman: backport test script fixes
> u-boot.inc: fix compilation when using 'gold' as linker
> u-boot-fw-utils: add 2012.04 release
> u-boot-mkimage: add 2012.04 release
> u-boot: add 2012.04 release
>
> meta/recipes-bsp/u-boot/u-boot-fw-utils_2012.04.bb | 33 ++++++++++++
> meta/recipes-bsp/u-boot/u-boot-mkimage_2012.04.bb | 33 ++++++++++++
> meta/recipes-bsp/u-boot/u-boot.inc | 4 ++
> meta/recipes-bsp/u-boot/u-boot_2012.04.bb | 30 +++++++++++
> .../connman/test-set-ipv4-method-api-fix.patch | 50 ++++++++++++++++++
> .../connman/test-set-ipv6-method-api-fix.patch | 55 ++++++++++++++++++++
> meta/recipes-connectivity/connman/connman_0.79.bb | 4 +-
> 7 files changed, 208 insertions(+), 1 deletions(-)
> create mode 100644 meta/recipes-bsp/u-boot/u-boot-fw-utils_2012.04.bb
> create mode 100644 meta/recipes-bsp/u-boot/u-boot-mkimage_2012.04.bb
> create mode 100644 meta/recipes-bsp/u-boot/u-boot_2012.04.bb
> create mode 100644 meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch
> create mode 100644 meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch
>
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2012-04-27 21:23 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-22 19:15 [PATCH 0/5] Patches from O.S. Systems' tree Otavio Salvador
2012-04-22 19:15 ` [PATCH 1/5] connman: backport test script fixes Otavio Salvador
2012-04-22 19:15 ` [PATCH 2/5] u-boot.inc: fix compilation when using 'gold' as linker Otavio Salvador
2012-04-22 19:15 ` [PATCH 3/5] u-boot-fw-utils: add 2012.04 release Otavio Salvador
2012-04-25 13:30 ` Wolfgang Denk
2012-04-25 14:00 ` Otavio Salvador
2012-04-22 19:15 ` [PATCH 4/5] u-boot-mkimage: " Otavio Salvador
2012-04-22 19:15 ` [PATCH 5/5] u-boot: " Otavio Salvador
2012-04-27 21:13 ` [PATCH 0/5] Patches from O.S. Systems' tree Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox