* [2011.03-maintenance 0/5] pull request 20111214
@ 2011-12-14 11:40 Steffen Sledz
2011-12-14 11:40 ` [2011.03-maintenance 1/5] llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combinations Steffen Sledz
` (5 more replies)
0 siblings, 6 replies; 17+ messages in thread
From: Steffen Sledz @ 2011-12-14 11:40 UTC (permalink / raw)
To: Tom Rini, openembedded-devel; +Cc: Steffen Sledz, Stefan Schmidt
Hi Tom,
please pull these 5 commits cherry-picked from oe.dev.
All of them are bugfixes and tested in our own environment.
Thx,
Steffen
The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded sledz/maintenance
http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
Stefan Schmidt (2):
llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
combinations
llvm2.7_2.7.bb: Update patch to use c++ include style.
Steffen Sledz (3):
live555: replace version 20110314 with 20111120
icedtea6-native: fix problem on build hosts with linux kernel 3.x
openjdk: fix problem on build hosts with linux kernel 3.x
recipes/icedtea/icedtea6-native.inc | 9 ++++-
recipes/live555/live555_20110314.bb | 8 ----
recipes/live555/live555_20111120.bb | 7 ++++
recipes/llvm/llvm2.7/include-fixes.patch | 55 ++++++++++++++++++++++++++++++
recipes/llvm/llvm2.7_2.7.bb | 3 +-
recipes/openjdk/openjdk-6-common.inc | 9 ++++-
6 files changed, 80 insertions(+), 11 deletions(-)
delete mode 100644 recipes/live555/live555_20110314.bb
create mode 100644 recipes/live555/live555_20111120.bb
create mode 100644 recipes/llvm/llvm2.7/include-fixes.patch
--
1.7.7
^ permalink raw reply [flat|nested] 17+ messages in thread
* [2011.03-maintenance 1/5] llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combinations
2011-12-14 11:40 [2011.03-maintenance 0/5] pull request 20111214 Steffen Sledz
@ 2011-12-14 11:40 ` Steffen Sledz
2011-12-14 11:40 ` [2011.03-maintenance 2/5] llvm2.7_2.7.bb: Update patch to use c++ include style Steffen Sledz
` (4 subsequent siblings)
5 siblings, 0 replies; 17+ messages in thread
From: Steffen Sledz @ 2011-12-14 11:40 UTC (permalink / raw)
To: Tom Rini, openembedded-devel
From: Stefan Schmidt <stefan@buglabs.net>
Its seems there is a stricter header checking again which results in errors like
this:
error: 'ptrdiff_t' does not name a type
This happens on my Debian SID system. Adding the needed includes fixes the
build.
Signed-off-by: Stefan Schmidt <stefan@buglabs.net>
---
recipes/llvm/llvm2.7/include-fixes.patch | 55 ++++++++++++++++++++++++++++++
recipes/llvm/llvm2.7_2.7.bb | 3 +-
2 files changed, 57 insertions(+), 1 deletions(-)
create mode 100644 recipes/llvm/llvm2.7/include-fixes.patch
diff --git a/recipes/llvm/llvm2.7/include-fixes.patch b/recipes/llvm/llvm2.7/include-fixes.patch
new file mode 100644
index 0000000..9e71e40
--- /dev/null
+++ b/recipes/llvm/llvm2.7/include-fixes.patch
@@ -0,0 +1,55 @@
+Fixes stricter includes which result in failures like this:
+error: 'ptrdiff_t' does not name a type
+
+Upstream-Status: Unknown, not submitted as 2.7 is very old
+
+Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
+
+Index: llvm-2.7/include/llvm/ADT/SmallVector.h
+===================================================================
+--- llvm-2.7.orig/include/llvm/ADT/SmallVector.h 2011-05-08 17:07:09.000000000 +0200
++++ llvm-2.7/include/llvm/ADT/SmallVector.h 2011-05-08 17:07:25.000000000 +0200
+@@ -19,6 +19,7 @@
+ #include <cassert>
+ #include <cstring>
+ #include <memory>
++#include <stddef.h>
+
+ #ifdef _MSC_VER
+ namespace std {
+Index: llvm-2.7/include/llvm/ADT/ilist.h
+===================================================================
+--- llvm-2.7.orig/include/llvm/ADT/ilist.h 2011-05-08 20:24:57.000000000 +0200
++++ llvm-2.7/include/llvm/ADT/ilist.h 2011-05-08 20:25:12.000000000 +0200
+@@ -40,6 +40,7 @@
+
+ #include <cassert>
+ #include <iterator>
++#include <stddef.h>
+
+ namespace llvm {
+
+Index: llvm-2.7/include/llvm/Use.h
+===================================================================
+--- llvm-2.7.orig/include/llvm/Use.h 2011-05-08 20:28:21.000000000 +0200
++++ llvm-2.7/include/llvm/Use.h 2011-05-08 20:28:37.000000000 +0200
+@@ -28,6 +28,7 @@
+ #include "llvm/Support/Casting.h"
+ #include "llvm/ADT/PointerIntPair.h"
+ #include <iterator>
++#include <stddef.h>
+
+ namespace llvm {
+
+Index: llvm-2.7/include/llvm/ADT/DenseMap.h
+===================================================================
+--- llvm-2.7.orig/include/llvm/ADT/DenseMap.h 2011-05-08 20:32:11.000000000 +0200
++++ llvm-2.7/include/llvm/ADT/DenseMap.h 2011-05-08 20:32:21.000000000 +0200
+@@ -23,6 +23,7 @@
+ #include <utility>
+ #include <cassert>
+ #include <cstring>
++#include <stddef.h>
+
+ namespace llvm {
+
diff --git a/recipes/llvm/llvm2.7_2.7.bb b/recipes/llvm/llvm2.7_2.7.bb
index 4353622..12755db 100644
--- a/recipes/llvm/llvm2.7_2.7.bb
+++ b/recipes/llvm/llvm2.7_2.7.bb
@@ -1,6 +1,6 @@
require llvm.inc
-PR = "r9"
+PR = "r10"
DEPENDS = "llvm-common llvm2.7-native"
@@ -15,6 +15,7 @@ SRC_URI += "\
file://r104652-VFPLoadStoreMultiple.patch \
file://r104653-BFC-BFI.patch \
file://rawMOVLRPC.patch \
+ file://include-fixes.patch \
"
LLVM_RELEASE = "2.7"
--
1.7.7
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [2011.03-maintenance 2/5] llvm2.7_2.7.bb: Update patch to use c++ include style.
2011-12-14 11:40 [2011.03-maintenance 0/5] pull request 20111214 Steffen Sledz
2011-12-14 11:40 ` [2011.03-maintenance 1/5] llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combinations Steffen Sledz
@ 2011-12-14 11:40 ` Steffen Sledz
2011-12-14 11:40 ` [2011.03-maintenance 3/5] live555: replace version 20110314 with 20111120 Steffen Sledz
` (3 subsequent siblings)
5 siblings, 0 replies; 17+ messages in thread
From: Steffen Sledz @ 2011-12-14 11:40 UTC (permalink / raw)
To: Tom Rini, openembedded-devel
From: Stefan Schmidt <stefan@buglabs.net>
As henning suggested on we should use a c++ style include here instead. Thus
changing to #include <cstddef>
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
---
recipes/llvm/llvm2.7/include-fixes.patch | 8 ++++----
recipes/llvm/llvm2.7_2.7.bb | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/recipes/llvm/llvm2.7/include-fixes.patch b/recipes/llvm/llvm2.7/include-fixes.patch
index 9e71e40..2783f4d 100644
--- a/recipes/llvm/llvm2.7/include-fixes.patch
+++ b/recipes/llvm/llvm2.7/include-fixes.patch
@@ -13,7 +13,7 @@ Index: llvm-2.7/include/llvm/ADT/SmallVector.h
#include <cassert>
#include <cstring>
#include <memory>
-+#include <stddef.h>
++#include <cstddef>
#ifdef _MSC_VER
namespace std {
@@ -25,7 +25,7 @@ Index: llvm-2.7/include/llvm/ADT/ilist.h
#include <cassert>
#include <iterator>
-+#include <stddef.h>
++#include <cstddef>
namespace llvm {
@@ -37,7 +37,7 @@ Index: llvm-2.7/include/llvm/Use.h
#include "llvm/Support/Casting.h"
#include "llvm/ADT/PointerIntPair.h"
#include <iterator>
-+#include <stddef.h>
++#include <cstddef>
namespace llvm {
@@ -49,7 +49,7 @@ Index: llvm-2.7/include/llvm/ADT/DenseMap.h
#include <utility>
#include <cassert>
#include <cstring>
-+#include <stddef.h>
++#include <cstddef>
namespace llvm {
diff --git a/recipes/llvm/llvm2.7_2.7.bb b/recipes/llvm/llvm2.7_2.7.bb
index 12755db..7d56e7d 100644
--- a/recipes/llvm/llvm2.7_2.7.bb
+++ b/recipes/llvm/llvm2.7_2.7.bb
@@ -1,6 +1,6 @@
require llvm.inc
-PR = "r10"
+PR = "r11"
DEPENDS = "llvm-common llvm2.7-native"
--
1.7.7
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [2011.03-maintenance 3/5] live555: replace version 20110314 with 20111120
2011-12-14 11:40 [2011.03-maintenance 0/5] pull request 20111214 Steffen Sledz
2011-12-14 11:40 ` [2011.03-maintenance 1/5] llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combinations Steffen Sledz
2011-12-14 11:40 ` [2011.03-maintenance 2/5] llvm2.7_2.7.bb: Update patch to use c++ include style Steffen Sledz
@ 2011-12-14 11:40 ` Steffen Sledz
2011-12-14 11:40 ` [2011.03-maintenance 4/5] icedtea6-native: fix problem on build hosts with linux kernel 3.x Steffen Sledz
` (2 subsequent siblings)
5 siblings, 0 replies; 17+ messages in thread
From: Steffen Sledz @ 2011-12-14 11:40 UTC (permalink / raw)
To: Tom Rini, openembedded-devel
Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de>
---
recipes/live555/live555_20110314.bb | 8 --------
recipes/live555/live555_20111120.bb | 7 +++++++
2 files changed, 7 insertions(+), 8 deletions(-)
delete mode 100644 recipes/live555/live555_20110314.bb
create mode 100644 recipes/live555/live555_20111120.bb
diff --git a/recipes/live555/live555_20110314.bb b/recipes/live555/live555_20110314.bb
deleted file mode 100644
index 44664d2..0000000
--- a/recipes/live555/live555_20110314.bb
+++ /dev/null
@@ -1,8 +0,0 @@
-require live555.inc
-
-PR = "${INC_PR}.0"
-
-SRC_URI[md5sum] = "ff65b2c598e970b4b6c8219a1811de00"
-SRC_URI[sha256sum] = "c6ce050a7f9f69901e6f7f81a6745c82d9419e3904a753b2d5db1139caaf6738"
-
-
diff --git a/recipes/live555/live555_20111120.bb b/recipes/live555/live555_20111120.bb
new file mode 100644
index 0000000..f6c4f63
--- /dev/null
+++ b/recipes/live555/live555_20111120.bb
@@ -0,0 +1,7 @@
+require live555.inc
+
+PR = "${INC_PR}.0"
+
+SRC_URI[md5sum] = "8e5ebefdf7d12ca9cfd7175ff3d7eef2"
+SRC_URI[sha256sum] = "695cf22d43516f082e26ee9eb8373a0ae3b4ed472f1e224b51d881219f694f2e"
+
--
1.7.7
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [2011.03-maintenance 4/5] icedtea6-native: fix problem on build hosts with linux kernel 3.x
2011-12-14 11:40 [2011.03-maintenance 0/5] pull request 20111214 Steffen Sledz
` (2 preceding siblings ...)
2011-12-14 11:40 ` [2011.03-maintenance 3/5] live555: replace version 20110314 with 20111120 Steffen Sledz
@ 2011-12-14 11:40 ` Steffen Sledz
2011-12-14 11:41 ` [2011.03-maintenance 5/5] openjdk: " Steffen Sledz
2011-12-14 18:07 ` [2011.03-maintenance 0/5] pull request 20111214 Tom Rini
5 siblings, 0 replies; 17+ messages in thread
From: Steffen Sledz @ 2011-12-14 11:40 UTC (permalink / raw)
To: Tom Rini, openembedded-devel
From: Steffen Sledz <sledz@dresearch.de>
see http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7072341
Signed-off-by: Steffen Sledz <sledz@dresearch.de>
---
recipes/icedtea/icedtea6-native.inc | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/recipes/icedtea/icedtea6-native.inc b/recipes/icedtea/icedtea6-native.inc
index 06da7c0..91d6075 100644
--- a/recipes/icedtea/icedtea6-native.inc
+++ b/recipes/icedtea/icedtea6-native.inc
@@ -1,7 +1,7 @@
DESCRIPTION = "Harness to build the source code from OpenJDK using Free Software build tools"
HOMEPAGE = "http://icedtea.classpath.org"
LICENSE = "GPL with Classpath Exception"
-INC_PR = "r4"
+INC_PR = "r5"
DEPENDS = "virtual/javac-native classpath-tools-native \
virtual/java-native classpath-native \
@@ -108,6 +108,13 @@ do_configure_append() {
-e"s|g++\$(GCC_SUFFIX)|${CXX}|" \
$F
done
+
+ for F in openjdk/hotspot/make/linux/Makefile openjdk-ecj/hotspot/make/linux/Makefile ;
+ do
+ sed -i \
+ -e"s|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7%|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3%|" \
+ $F
+ done
}
EXTRA_OEMAKE = ' \
--
1.7.7
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [2011.03-maintenance 5/5] openjdk: fix problem on build hosts with linux kernel 3.x
2011-12-14 11:40 [2011.03-maintenance 0/5] pull request 20111214 Steffen Sledz
` (3 preceding siblings ...)
2011-12-14 11:40 ` [2011.03-maintenance 4/5] icedtea6-native: fix problem on build hosts with linux kernel 3.x Steffen Sledz
@ 2011-12-14 11:41 ` Steffen Sledz
2011-12-14 18:07 ` [2011.03-maintenance 0/5] pull request 20111214 Tom Rini
5 siblings, 0 replies; 17+ messages in thread
From: Steffen Sledz @ 2011-12-14 11:41 UTC (permalink / raw)
To: Tom Rini, openembedded-devel
see http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7072341
Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de>
---
recipes/openjdk/openjdk-6-common.inc | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/recipes/openjdk/openjdk-6-common.inc b/recipes/openjdk/openjdk-6-common.inc
index 54c45f8..59a7a56 100644
--- a/recipes/openjdk/openjdk-6-common.inc
+++ b/recipes/openjdk/openjdk-6-common.inc
@@ -10,7 +10,7 @@ ICEDTEA = "NEEDS TO BE SET"
S = "${WORKDIR}/${ICEDTEA}"
B = "${S}/build"
-INC_PR = "r11"
+INC_PR = "r12"
SRC_URI = "\
${ICEDTEA_URI} \
@@ -208,6 +208,13 @@ do_configure_prepend() {
do_configure_append() {
oe_runmake patch-ecj
+
+ for F in ${WORKDIR}/openjdk-src-dir/hotspot/make/linux/Makefile ${WORKDIR}/icedtea6-1.8.5/build/openjdk-ecj/hotspot/make/linux/Makefile ${WORKDIR}/icedtea6-1.8.5/build/openjdk/hotspot/make/linux/Makefile ;
+ do
+ sed -i \
+ -e"s|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7%|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3%|" \
+ $F
+ done
}
# Work around broken variable quoting in oe-stable 2009 and provide the variable
--
1.7.7
^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance 0/5] pull request 20111214
2011-12-14 11:40 [2011.03-maintenance 0/5] pull request 20111214 Steffen Sledz
` (4 preceding siblings ...)
2011-12-14 11:41 ` [2011.03-maintenance 5/5] openjdk: " Steffen Sledz
@ 2011-12-14 18:07 ` Tom Rini
2011-12-14 18:08 ` Tom Rini
2011-12-15 6:37 ` Steffen Sledz
5 siblings, 2 replies; 17+ messages in thread
From: Tom Rini @ 2011-12-14 18:07 UTC (permalink / raw)
To: Steffen Sledz; +Cc: Steffen Sledz, openembedded-devel, Stefan Schmidt
On Wed, Dec 14, 2011 at 4:40 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
> Hi Tom,
>
> please pull these 5 commits cherry-picked from oe.dev.
> All of them are bugfixes and tested in our own environment.
>
> Thx,
> Steffen
>
> The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
>
> Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
>
> are available in the git repository at:
>
> git://git.openembedded.org/openembedded sledz/maintenance
> http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
>
> Stefan Schmidt (2):
> llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
> combinations
> llvm2.7_2.7.bb: Update patch to use c++ include style.
>
> Steffen Sledz (3):
> live555: replace version 20110314 with 20111120
> icedtea6-native: fix problem on build hosts with linux kernel 3.x
> openjdk: fix problem on build hosts with linux kernel 3.x
Only 1 2 and 3 made it to the ML. 1 and 2 are fine. For 3, we should
grab the old file (someone must have a copy) and stick that on
sources.openembedded.org.
--
Tom
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance 0/5] pull request 20111214
2011-12-14 18:07 ` [2011.03-maintenance 0/5] pull request 20111214 Tom Rini
@ 2011-12-14 18:08 ` Tom Rini
2011-12-15 6:37 ` Steffen Sledz
1 sibling, 0 replies; 17+ messages in thread
From: Tom Rini @ 2011-12-14 18:08 UTC (permalink / raw)
To: Steffen Sledz; +Cc: Steffen Sledz, openembedded-devel, Stefan Schmidt
On Wed, Dec 14, 2011 at 11:07 AM, Tom Rini <tom.rini@gmail.com> wrote:
> On Wed, Dec 14, 2011 at 4:40 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>> Hi Tom,
>>
>> please pull these 5 commits cherry-picked from oe.dev.
>> All of them are bugfixes and tested in our own environment.
>>
>> Thx,
>> Steffen
>>
>> The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
>>
>> Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
>>
>> are available in the git repository at:
>>
>> git://git.openembedded.org/openembedded sledz/maintenance
>> http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
>>
>> Stefan Schmidt (2):
>> llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
>> combinations
>> llvm2.7_2.7.bb: Update patch to use c++ include style.
>>
>> Steffen Sledz (3):
>> live555: replace version 20110314 with 20111120
>> icedtea6-native: fix problem on build hosts with linux kernel 3.x
>> openjdk: fix problem on build hosts with linux kernel 3.x
>
> Only 1 2 and 3 made it to the ML.
I take it back, gmail playing tricks on me.\
--
Tom
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance 0/5] pull request 20111214
2011-12-14 18:07 ` [2011.03-maintenance 0/5] pull request 20111214 Tom Rini
2011-12-14 18:08 ` Tom Rini
@ 2011-12-15 6:37 ` Steffen Sledz
2011-12-19 7:17 ` Steffen Sledz
1 sibling, 1 reply; 17+ messages in thread
From: Steffen Sledz @ 2011-12-15 6:37 UTC (permalink / raw)
To: Tom Rini; +Cc: Steffen Sledz, openembedded-devel, Stefan Schmidt
Am 14.12.2011 19:07, schrieb Tom Rini:
> On Wed, Dec 14, 2011 at 4:40 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>> Hi Tom,
>>
>> please pull these 5 commits cherry-picked from oe.dev.
>> All of them are bugfixes and tested in our own environment.
>>
>> Thx,
>> Steffen
>>
>> The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
>>
>> Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
>>
>> are available in the git repository at:
>>
>> git://git.openembedded.org/openembedded sledz/maintenance
>> http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
>>
>> Stefan Schmidt (2):
>> llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
>> combinations
>> llvm2.7_2.7.bb: Update patch to use c++ include style.
>>
>> Steffen Sledz (3):
>> live555: replace version 20110314 with 20111120
>> icedtea6-native: fix problem on build hosts with linux kernel 3.x
>> openjdk: fix problem on build hosts with linux kernel 3.x
>
> Only 1 2 and 3 made it to the ML.
Please have a second look. They all should be there.
> 1 and 2 are fine. For 3, we should
> grab the old file (someone must have a copy) and stick that on
> sources.openembedded.org.
The version replacement is not just for the well known live555 download problem. It fixes some other problems too. Also the version introduced by this patch is already uploaded to sources.openembedded.org and the angstrom mirrors.
Regards,
Steffen
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance 0/5] pull request 20111214
2011-12-15 6:37 ` Steffen Sledz
@ 2011-12-19 7:17 ` Steffen Sledz
2011-12-19 14:39 ` Tom Rini
0 siblings, 1 reply; 17+ messages in thread
From: Steffen Sledz @ 2011-12-19 7:17 UTC (permalink / raw)
To: Tom Rini; +Cc: openembedded-devel
On 15.12.2011 07:37, Steffen Sledz wrote:
> Am 14.12.2011 19:07, schrieb Tom Rini:
>> On Wed, Dec 14, 2011 at 4:40 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>> Hi Tom,
>>>
>>> please pull these 5 commits cherry-picked from oe.dev.
>>> All of them are bugfixes and tested in our own environment.
>>>
>>> Thx,
>>> Steffen
>>>
>>> The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
>>>
>>> Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
>>>
>>> are available in the git repository at:
>>>
>>> git://git.openembedded.org/openembedded sledz/maintenance
>>> http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
>>>
>>> Stefan Schmidt (2):
>>> llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
>>> combinations
>>> llvm2.7_2.7.bb: Update patch to use c++ include style.
>>>
>>> Steffen Sledz (3):
>>> live555: replace version 20110314 with 20111120
>>> icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>> openjdk: fix problem on build hosts with linux kernel 3.x
>>
>> Only 1 2 and 3 made it to the ML.
>
> Please have a second look. They all should be there.
>
>> 1 and 2 are fine. For 3, we should
>> grab the old file (someone must have a copy) and stick that on
>> sources.openembedded.org.
>
> The version replacement is not just for the well known live555 download problem. It fixes some other problems too. Also the version introduced by this patch is already uploaded to sources.openembedded.org and the angstrom mirrors.
Ping!
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance 0/5] pull request 20111214
2011-12-19 7:17 ` Steffen Sledz
@ 2011-12-19 14:39 ` Tom Rini
2011-12-19 15:22 ` Steffen Sledz
0 siblings, 1 reply; 17+ messages in thread
From: Tom Rini @ 2011-12-19 14:39 UTC (permalink / raw)
To: Steffen Sledz; +Cc: openembedded-devel
On Mon, Dec 19, 2011 at 12:17 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
> On 15.12.2011 07:37, Steffen Sledz wrote:
>> Am 14.12.2011 19:07, schrieb Tom Rini:
>>> On Wed, Dec 14, 2011 at 4:40 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>> Hi Tom,
>>>>
>>>> please pull these 5 commits cherry-picked from oe.dev.
>>>> All of them are bugfixes and tested in our own environment.
>>>>
>>>> Thx,
>>>> Steffen
>>>>
>>>> The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
>>>>
>>>> Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
>>>>
>>>> are available in the git repository at:
>>>>
>>>> git://git.openembedded.org/openembedded sledz/maintenance
>>>> http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
>>>>
>>>> Stefan Schmidt (2):
>>>> llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
>>>> combinations
>>>> llvm2.7_2.7.bb: Update patch to use c++ include style.
>>>>
>>>> Steffen Sledz (3):
>>>> live555: replace version 20110314 with 20111120
>>>> icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>>> openjdk: fix problem on build hosts with linux kernel 3.x
>>>
>>> Only 1 2 and 3 made it to the ML.
>>
>> Please have a second look. They all should be there.
>>
>>> 1 and 2 are fine. For 3, we should
>>> grab the old file (someone must have a copy) and stick that on
>>> sources.openembedded.org.
>>
>> The version replacement is not just for the well known live555 download problem. It fixes some other problems too. Also the version introduced by this patch is already uploaded to sources.openembedded.org and the angstrom mirrors.
>
> Ping!
Sorry for the delay. Especially since I'm now going to ask you to
rebase the branch. Here's what I get after merging your request:
$ git log --oneline origin..
b6cc3be87 Merge branch 'sledz/maintenance' of git://git.openembedded.org/openemb
eda1aaf openjdk: fix problem on build hosts with linux kernel 3.x
4500148 icedtea6-native: fix problem on build hosts with linux kernel 3.x
cb5b2fb live555: replace version 20110314 with 20111120
3904feb llvm2.7_2.7.bb: Update patch to use c++ include style.
a992bc4 llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combination
9826895 Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
ebb70fd gypsy: update to latest upstream version 0.8, and remove version 0.7
69186cf gypsy: move generic SRC_URI part to gypsy.inc
7f9e803 gypsy: fix packaging of DBus starter script
45b8af8 rsyslog: change path for config includes to /etc/rsyslog.d
77a5200 Revert "gypsy: fix packaging of DBus starter script"
105f8ae Revert "gypsy: move generic SRC_URI part to gypsy.inc"
701d1cb Revert "gypsy: update to latest upstream version 0.8, and remove version
593bb51 Revert "rsyslog: change path for config includes to /etc/rsyslog.d"
de3065d gypsy: update to latest upstream version 0.8, and remove version 0.7
dbb8899 gypsy: move generic SRC_URI part to gypsy.inc
9bef377 gypsy: fix packaging of DBus starter script
772286e Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
ef52795 rsyslog: change path for config includes to /etc/rsyslog.d
I'm sure it's all unintentional.
--
Tom
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance 0/5] pull request 20111214
2011-12-19 14:39 ` Tom Rini
@ 2011-12-19 15:22 ` Steffen Sledz
2011-12-19 15:28 ` Tom Rini
0 siblings, 1 reply; 17+ messages in thread
From: Steffen Sledz @ 2011-12-19 15:22 UTC (permalink / raw)
To: Tom Rini; +Cc: openembedded-devel
On 19.12.2011 15:39, Tom Rini wrote:
> On Mon, Dec 19, 2011 at 12:17 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>> On 15.12.2011 07:37, Steffen Sledz wrote:
>>> Am 14.12.2011 19:07, schrieb Tom Rini:
>>>> On Wed, Dec 14, 2011 at 4:40 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>>> Hi Tom,
>>>>>
>>>>> please pull these 5 commits cherry-picked from oe.dev.
>>>>> All of them are bugfixes and tested in our own environment.
>>>>>
>>>>> Thx,
>>>>> Steffen
>>>>>
>>>>> The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
>>>>>
>>>>> Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
>>>>>
>>>>> are available in the git repository at:
>>>>>
>>>>> git://git.openembedded.org/openembedded sledz/maintenance
>>>>> http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
>>>>>
>>>>> Stefan Schmidt (2):
>>>>> llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
>>>>> combinations
>>>>> llvm2.7_2.7.bb: Update patch to use c++ include style.
>>>>>
>>>>> Steffen Sledz (3):
>>>>> live555: replace version 20110314 with 20111120
>>>>> icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>>>> openjdk: fix problem on build hosts with linux kernel 3.x
>>>>
>>>> Only 1 2 and 3 made it to the ML.
>>>
>>> Please have a second look. They all should be there.
>>>
>>>> 1 and 2 are fine. For 3, we should
>>>> grab the old file (someone must have a copy) and stick that on
>>>> sources.openembedded.org.
>>>
>>> The version replacement is not just for the well known live555 download problem. It fixes some other problems too. Also the version introduced by this patch is already uploaded to sources.openembedded.org and the angstrom mirrors.
>>
>> Ping!
>
> Sorry for the delay. Especially since I'm now going to ask you to
> rebase the branch. Here's what I get after merging your request:
> $ git log --oneline origin..
> b6cc3be87 Merge branch 'sledz/maintenance' of git://git.openembedded.org/openemb
> eda1aaf openjdk: fix problem on build hosts with linux kernel 3.x
> 4500148 icedtea6-native: fix problem on build hosts with linux kernel 3.x
> cb5b2fb live555: replace version 20110314 with 20111120
> 3904feb llvm2.7_2.7.bb: Update patch to use c++ include style.
> a992bc4 llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combination
> 9826895 Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
> ebb70fd gypsy: update to latest upstream version 0.8, and remove version 0.7
> 69186cf gypsy: move generic SRC_URI part to gypsy.inc
> 7f9e803 gypsy: fix packaging of DBus starter script
> 45b8af8 rsyslog: change path for config includes to /etc/rsyslog.d
> 77a5200 Revert "gypsy: fix packaging of DBus starter script"
> 105f8ae Revert "gypsy: move generic SRC_URI part to gypsy.inc"
> 701d1cb Revert "gypsy: update to latest upstream version 0.8, and remove version
> 593bb51 Revert "rsyslog: change path for config includes to /etc/rsyslog.d"
> de3065d gypsy: update to latest upstream version 0.8, and remove version 0.7
> dbb8899 gypsy: move generic SRC_URI part to gypsy.inc
> 9bef377 gypsy: fix packaging of DBus starter script
> 772286e Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
> ef52795 rsyslog: change path for config includes to /etc/rsyslog.d
>
> I'm sure it's all unintentional.
The pull request contains the last five commits only ("The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796").
Maybe i need some help in using git here. How should i prepare my branch to fulfil your requirements?
Regards,
Steffen
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance 0/5] pull request 20111214
2011-12-19 15:22 ` Steffen Sledz
@ 2011-12-19 15:28 ` Tom Rini
2011-12-19 16:32 ` Steffen Sledz
0 siblings, 1 reply; 17+ messages in thread
From: Tom Rini @ 2011-12-19 15:28 UTC (permalink / raw)
To: Steffen Sledz; +Cc: openembedded-devel
On Mon, Dec 19, 2011 at 8:22 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
> On 19.12.2011 15:39, Tom Rini wrote:
>> On Mon, Dec 19, 2011 at 12:17 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>> On 15.12.2011 07:37, Steffen Sledz wrote:
>>>> Am 14.12.2011 19:07, schrieb Tom Rini:
>>>>> On Wed, Dec 14, 2011 at 4:40 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>>>> Hi Tom,
>>>>>>
>>>>>> please pull these 5 commits cherry-picked from oe.dev.
>>>>>> All of them are bugfixes and tested in our own environment.
>>>>>>
>>>>>> Thx,
>>>>>> Steffen
>>>>>>
>>>>>> The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
>>>>>>
>>>>>> Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
>>>>>>
>>>>>> are available in the git repository at:
>>>>>>
>>>>>> git://git.openembedded.org/openembedded sledz/maintenance
>>>>>> http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
>>>>>>
>>>>>> Stefan Schmidt (2):
>>>>>> llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
>>>>>> combinations
>>>>>> llvm2.7_2.7.bb: Update patch to use c++ include style.
>>>>>>
>>>>>> Steffen Sledz (3):
>>>>>> live555: replace version 20110314 with 20111120
>>>>>> icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>>>>> openjdk: fix problem on build hosts with linux kernel 3.x
>>>>>
>>>>> Only 1 2 and 3 made it to the ML.
>>>>
>>>> Please have a second look. They all should be there.
>>>>
>>>>> 1 and 2 are fine. For 3, we should
>>>>> grab the old file (someone must have a copy) and stick that on
>>>>> sources.openembedded.org.
>>>>
>>>> The version replacement is not just for the well known live555 download problem. It fixes some other problems too. Also the version introduced by this patch is already uploaded to sources.openembedded.org and the angstrom mirrors.
>>>
>>> Ping!
>>
>> Sorry for the delay. Especially since I'm now going to ask you to
>> rebase the branch. Here's what I get after merging your request:
>> $ git log --oneline origin..
>> b6cc3be87 Merge branch 'sledz/maintenance' of git://git.openembedded.org/openemb
>> eda1aaf openjdk: fix problem on build hosts with linux kernel 3.x
>> 4500148 icedtea6-native: fix problem on build hosts with linux kernel 3.x
>> cb5b2fb live555: replace version 20110314 with 20111120
>> 3904feb llvm2.7_2.7.bb: Update patch to use c++ include style.
>> a992bc4 llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combination
>> 9826895 Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
>> ebb70fd gypsy: update to latest upstream version 0.8, and remove version 0.7
>> 69186cf gypsy: move generic SRC_URI part to gypsy.inc
>> 7f9e803 gypsy: fix packaging of DBus starter script
>> 45b8af8 rsyslog: change path for config includes to /etc/rsyslog.d
>> 77a5200 Revert "gypsy: fix packaging of DBus starter script"
>> 105f8ae Revert "gypsy: move generic SRC_URI part to gypsy.inc"
>> 701d1cb Revert "gypsy: update to latest upstream version 0.8, and remove version
>> 593bb51 Revert "rsyslog: change path for config includes to /etc/rsyslog.d"
>> de3065d gypsy: update to latest upstream version 0.8, and remove version 0.7
>> dbb8899 gypsy: move generic SRC_URI part to gypsy.inc
>> 9bef377 gypsy: fix packaging of DBus starter script
>> 772286e Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
>> ef52795 rsyslog: change path for config includes to /etc/rsyslog.d
>>
>> I'm sure it's all unintentional.
>
> The pull request contains the last five commits only ("The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796").
>
> Maybe i need some help in using git here. How should i prepare my branch to fulfil your requirements?
Are others using your branch? If not, git push <name of your writable
OE remote> :sledz/maintenance to delete your current branch, git
rebase -i origin/2011.03-maintenance (and remove the commits you no
longer want) then git push <name of writeable OE remote>
local-branch:sledz/maintenance. If others are using your branch, skip
the first step and for the second step do a git checkout -b clean-push
origin/sledz/maintenance, then do the rebase in that branch and push
to sledz/pull-request-some-date-spec
--
Tom
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance 0/5] pull request 20111214
2011-12-19 15:28 ` Tom Rini
@ 2011-12-19 16:32 ` Steffen Sledz
2011-12-19 17:40 ` Tom Rini
0 siblings, 1 reply; 17+ messages in thread
From: Steffen Sledz @ 2011-12-19 16:32 UTC (permalink / raw)
To: Tom Rini; +Cc: openembedded-devel
On 19.12.2011 16:28, Tom Rini wrote:
> On Mon, Dec 19, 2011 at 8:22 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>> On 19.12.2011 15:39, Tom Rini wrote:
>>> On Mon, Dec 19, 2011 at 12:17 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>> On 15.12.2011 07:37, Steffen Sledz wrote:
>>>>> Am 14.12.2011 19:07, schrieb Tom Rini:
>>>>>> On Wed, Dec 14, 2011 at 4:40 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>>>>> Hi Tom,
>>>>>>>
>>>>>>> please pull these 5 commits cherry-picked from oe.dev.
>>>>>>> All of them are bugfixes and tested in our own environment.
>>>>>>>
>>>>>>> Thx,
>>>>>>> Steffen
>>>>>>>
>>>>>>> The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
>>>>>>>
>>>>>>> Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
>>>>>>>
>>>>>>> are available in the git repository at:
>>>>>>>
>>>>>>> git://git.openembedded.org/openembedded sledz/maintenance
>>>>>>> http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
>>>>>>>
>>>>>>> Stefan Schmidt (2):
>>>>>>> llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
>>>>>>> combinations
>>>>>>> llvm2.7_2.7.bb: Update patch to use c++ include style.
>>>>>>>
>>>>>>> Steffen Sledz (3):
>>>>>>> live555: replace version 20110314 with 20111120
>>>>>>> icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>>>>>> openjdk: fix problem on build hosts with linux kernel 3.x
>>>>>>
>>>>>> Only 1 2 and 3 made it to the ML.
>>>>>
>>>>> Please have a second look. They all should be there.
>>>>>
>>>>>> 1 and 2 are fine. For 3, we should
>>>>>> grab the old file (someone must have a copy) and stick that on
>>>>>> sources.openembedded.org.
>>>>>
>>>>> The version replacement is not just for the well known live555 download problem. It fixes some other problems too. Also the version introduced by this patch is already uploaded to sources.openembedded.org and the angstrom mirrors.
>>>>
>>>> Ping!
>>>
>>> Sorry for the delay. Especially since I'm now going to ask you to
>>> rebase the branch. Here's what I get after merging your request:
>>> $ git log --oneline origin..
>>> b6cc3be87 Merge branch 'sledz/maintenance' of git://git.openembedded.org/openemb
>>> eda1aaf openjdk: fix problem on build hosts with linux kernel 3.x
>>> 4500148 icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>> cb5b2fb live555: replace version 20110314 with 20111120
>>> 3904feb llvm2.7_2.7.bb: Update patch to use c++ include style.
>>> a992bc4 llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combination
>>> 9826895 Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
>>> ebb70fd gypsy: update to latest upstream version 0.8, and remove version 0.7
>>> 69186cf gypsy: move generic SRC_URI part to gypsy.inc
>>> 7f9e803 gypsy: fix packaging of DBus starter script
>>> 45b8af8 rsyslog: change path for config includes to /etc/rsyslog.d
>>> 77a5200 Revert "gypsy: fix packaging of DBus starter script"
>>> 105f8ae Revert "gypsy: move generic SRC_URI part to gypsy.inc"
>>> 701d1cb Revert "gypsy: update to latest upstream version 0.8, and remove version
>>> 593bb51 Revert "rsyslog: change path for config includes to /etc/rsyslog.d"
>>> de3065d gypsy: update to latest upstream version 0.8, and remove version 0.7
>>> dbb8899 gypsy: move generic SRC_URI part to gypsy.inc
>>> 9bef377 gypsy: fix packaging of DBus starter script
>>> 772286e Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
>>> ef52795 rsyslog: change path for config includes to /etc/rsyslog.d
>>>
>>> I'm sure it's all unintentional.
>>
>> The pull request contains the last five commits only ("The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796").
>>
>> Maybe i need some help in using git here. How should i prepare my branch to fulfil your requirements?
>
> Are others using your branch? If not, git push <name of your writable
> OE remote> :sledz/maintenance to delete your current branch, git
> rebase -i origin/2011.03-maintenance (and remove the commits you no
> longer want) then git push <name of writeable OE remote>
> local-branch:sledz/maintenance.
Sorry, but i need some more guidance here. Everytime i think i made it another problem drives me crazy. :(
Assuming i've a fresh local clone created with
git clone git@git.openembedded.org:openembedded
What are the exact next stepts?
I tried
git checkout sledz/maintenance
git rebase -i origin/2011.03-maintenance # unwanted commits removed
git push origin sledz/maintenance
The last results in
To git@git.openembedded.org:openembedded
! [rejected] sledz/maintenance -> sledz/maintenance (non-fast-forward)
error: failed to push some refs to 'git@git.openembedded.org:openembedded'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again. See the
'Note about fast-forwards' section of 'git push --help' for details.
> If others are using your branch, skip
> the first step and for the second step do a git checkout -b clean-push
> origin/sledz/maintenance, then do the rebase in that branch and push
> to sledz/pull-request-some-date-spec
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance 0/5] pull request 20111214
2011-12-19 16:32 ` Steffen Sledz
@ 2011-12-19 17:40 ` Tom Rini
2011-12-20 7:43 ` Steffen Sledz
0 siblings, 1 reply; 17+ messages in thread
From: Tom Rini @ 2011-12-19 17:40 UTC (permalink / raw)
To: Steffen Sledz; +Cc: openembedded-devel
On Mon, Dec 19, 2011 at 9:32 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
> On 19.12.2011 16:28, Tom Rini wrote:
>> On Mon, Dec 19, 2011 at 8:22 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>> On 19.12.2011 15:39, Tom Rini wrote:
>>>> On Mon, Dec 19, 2011 at 12:17 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>>> On 15.12.2011 07:37, Steffen Sledz wrote:
>>>>>> Am 14.12.2011 19:07, schrieb Tom Rini:
>>>>>>> On Wed, Dec 14, 2011 at 4:40 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>>>>>> Hi Tom,
>>>>>>>>
>>>>>>>> please pull these 5 commits cherry-picked from oe.dev.
>>>>>>>> All of them are bugfixes and tested in our own environment.
>>>>>>>>
>>>>>>>> Thx,
>>>>>>>> Steffen
>>>>>>>>
>>>>>>>> The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
>>>>>>>>
>>>>>>>> Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
>>>>>>>>
>>>>>>>> are available in the git repository at:
>>>>>>>>
>>>>>>>> git://git.openembedded.org/openembedded sledz/maintenance
>>>>>>>> http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
>>>>>>>>
>>>>>>>> Stefan Schmidt (2):
>>>>>>>> llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
>>>>>>>> combinations
>>>>>>>> llvm2.7_2.7.bb: Update patch to use c++ include style.
>>>>>>>>
>>>>>>>> Steffen Sledz (3):
>>>>>>>> live555: replace version 20110314 with 20111120
>>>>>>>> icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>>>>>>> openjdk: fix problem on build hosts with linux kernel 3.x
>>>>>>>
>>>>>>> Only 1 2 and 3 made it to the ML.
>>>>>>
>>>>>> Please have a second look. They all should be there.
>>>>>>
>>>>>>> 1 and 2 are fine. For 3, we should
>>>>>>> grab the old file (someone must have a copy) and stick that on
>>>>>>> sources.openembedded.org.
>>>>>>
>>>>>> The version replacement is not just for the well known live555 download problem. It fixes some other problems too. Also the version introduced by this patch is already uploaded to sources.openembedded.org and the angstrom mirrors.
>>>>>
>>>>> Ping!
>>>>
>>>> Sorry for the delay. Especially since I'm now going to ask you to
>>>> rebase the branch. Here's what I get after merging your request:
>>>> $ git log --oneline origin..
>>>> b6cc3be87 Merge branch 'sledz/maintenance' of git://git.openembedded.org/openemb
>>>> eda1aaf openjdk: fix problem on build hosts with linux kernel 3.x
>>>> 4500148 icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>>> cb5b2fb live555: replace version 20110314 with 20111120
>>>> 3904feb llvm2.7_2.7.bb: Update patch to use c++ include style.
>>>> a992bc4 llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combination
>>>> 9826895 Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
>>>> ebb70fd gypsy: update to latest upstream version 0.8, and remove version 0.7
>>>> 69186cf gypsy: move generic SRC_URI part to gypsy.inc
>>>> 7f9e803 gypsy: fix packaging of DBus starter script
>>>> 45b8af8 rsyslog: change path for config includes to /etc/rsyslog.d
>>>> 77a5200 Revert "gypsy: fix packaging of DBus starter script"
>>>> 105f8ae Revert "gypsy: move generic SRC_URI part to gypsy.inc"
>>>> 701d1cb Revert "gypsy: update to latest upstream version 0.8, and remove version
>>>> 593bb51 Revert "rsyslog: change path for config includes to /etc/rsyslog.d"
>>>> de3065d gypsy: update to latest upstream version 0.8, and remove version 0.7
>>>> dbb8899 gypsy: move generic SRC_URI part to gypsy.inc
>>>> 9bef377 gypsy: fix packaging of DBus starter script
>>>> 772286e Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
>>>> ef52795 rsyslog: change path for config includes to /etc/rsyslog.d
>>>>
>>>> I'm sure it's all unintentional.
>>>
>>> The pull request contains the last five commits only ("The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796").
>>>
>>> Maybe i need some help in using git here. How should i prepare my branch to fulfil your requirements?
>>
>> Are others using your branch? If not, git push <name of your writable
>> OE remote> :sledz/maintenance to delete your current branch, git
>> rebase -i origin/2011.03-maintenance (and remove the commits you no
>> longer want) then git push <name of writeable OE remote>
>> local-branch:sledz/maintenance.
>
> Sorry, but i need some more guidance here. Everytime i think i made it another problem drives me crazy. :(
>
> Assuming i've a fresh local clone created with
>
> git clone git@git.openembedded.org:openembedded
>
> What are the exact next stepts?
>
> I tried
>
> git checkout sledz/maintenance
> git rebase -i origin/2011.03-maintenance # unwanted commits removed
> git push origin sledz/maintenance
>
> The last results in
>
> To git@git.openembedded.org:openembedded
> ! [rejected] sledz/maintenance -> sledz/maintenance (non-fast-forward)
> error: failed to push some refs to 'git@git.openembedded.org:openembedded'
> To prevent you from losing history, non-fast-forward updates were rejected
> Merge the remote changes (e.g. 'git pull') before pushing again. See the
> 'Note about fast-forwards' section of 'git push --help' for details.
You either need to do the git push
git@git.openembedded.org:openembedded :sledz/maintenance (to delete
the old one) and if that fails (it used to be that only admins could
delete branches, just push instead to sledz/pull-request-19dec2011 or
so :)
--
Tom
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance 0/5] pull request 20111214
2011-12-19 17:40 ` Tom Rini
@ 2011-12-20 7:43 ` Steffen Sledz
2011-12-20 14:55 ` Tom Rini
0 siblings, 1 reply; 17+ messages in thread
From: Steffen Sledz @ 2011-12-20 7:43 UTC (permalink / raw)
To: Tom Rini; +Cc: openembedded-devel
Am 19.12.2011 18:40, schrieb Tom Rini:
> On Mon, Dec 19, 2011 at 9:32 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>> On 19.12.2011 16:28, Tom Rini wrote:
>>> On Mon, Dec 19, 2011 at 8:22 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>> On 19.12.2011 15:39, Tom Rini wrote:
>>>>> On Mon, Dec 19, 2011 at 12:17 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>>>> On 15.12.2011 07:37, Steffen Sledz wrote:
>>>>>>> Am 14.12.2011 19:07, schrieb Tom Rini:
>>>>>>>> On Wed, Dec 14, 2011 at 4:40 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>>>>>>> Hi Tom,
>>>>>>>>>
>>>>>>>>> please pull these 5 commits cherry-picked from oe.dev.
>>>>>>>>> All of them are bugfixes and tested in our own environment.
>>>>>>>>>
>>>>>>>>> Thx,
>>>>>>>>> Steffen
>>>>>>>>>
>>>>>>>>> The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
>>>>>>>>>
>>>>>>>>> Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
>>>>>>>>>
>>>>>>>>> are available in the git repository at:
>>>>>>>>>
>>>>>>>>> git://git.openembedded.org/openembedded sledz/maintenance
>>>>>>>>> http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
>>>>>>>>>
>>>>>>>>> Stefan Schmidt (2):
>>>>>>>>> llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
>>>>>>>>> combinations
>>>>>>>>> llvm2.7_2.7.bb: Update patch to use c++ include style.
>>>>>>>>>
>>>>>>>>> Steffen Sledz (3):
>>>>>>>>> live555: replace version 20110314 with 20111120
>>>>>>>>> icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>>>>>>>> openjdk: fix problem on build hosts with linux kernel 3.x
>>>>>>>>
>>>>>>>> Only 1 2 and 3 made it to the ML.
>>>>>>>
>>>>>>> Please have a second look. They all should be there.
>>>>>>>
>>>>>>>> 1 and 2 are fine. For 3, we should
>>>>>>>> grab the old file (someone must have a copy) and stick that on
>>>>>>>> sources.openembedded.org.
>>>>>>>
>>>>>>> The version replacement is not just for the well known live555 download problem. It fixes some other problems too. Also the version introduced by this patch is already uploaded to sources.openembedded.org and the angstrom mirrors.
>>>>>>
>>>>>> Ping!
>>>>>
>>>>> Sorry for the delay. Especially since I'm now going to ask you to
>>>>> rebase the branch. Here's what I get after merging your request:
>>>>> $ git log --oneline origin..
>>>>> b6cc3be87 Merge branch 'sledz/maintenance' of git://git.openembedded.org/openemb
>>>>> eda1aaf openjdk: fix problem on build hosts with linux kernel 3.x
>>>>> 4500148 icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>>>> cb5b2fb live555: replace version 20110314 with 20111120
>>>>> 3904feb llvm2.7_2.7.bb: Update patch to use c++ include style.
>>>>> a992bc4 llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combination
>>>>> 9826895 Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
>>>>> ebb70fd gypsy: update to latest upstream version 0.8, and remove version 0.7
>>>>> 69186cf gypsy: move generic SRC_URI part to gypsy.inc
>>>>> 7f9e803 gypsy: fix packaging of DBus starter script
>>>>> 45b8af8 rsyslog: change path for config includes to /etc/rsyslog.d
>>>>> 77a5200 Revert "gypsy: fix packaging of DBus starter script"
>>>>> 105f8ae Revert "gypsy: move generic SRC_URI part to gypsy.inc"
>>>>> 701d1cb Revert "gypsy: update to latest upstream version 0.8, and remove version
>>>>> 593bb51 Revert "rsyslog: change path for config includes to /etc/rsyslog.d"
>>>>> de3065d gypsy: update to latest upstream version 0.8, and remove version 0.7
>>>>> dbb8899 gypsy: move generic SRC_URI part to gypsy.inc
>>>>> 9bef377 gypsy: fix packaging of DBus starter script
>>>>> 772286e Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
>>>>> ef52795 rsyslog: change path for config includes to /etc/rsyslog.d
>>>>>
>>>>> I'm sure it's all unintentional.
>>>>
>>>> The pull request contains the last five commits only ("The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796").
>>>>
>>>> Maybe i need some help in using git here. How should i prepare my branch to fulfil your requirements?
>>>
>>> Are others using your branch? If not, git push <name of your writable
>>> OE remote> :sledz/maintenance to delete your current branch, git
>>> rebase -i origin/2011.03-maintenance (and remove the commits you no
>>> longer want) then git push <name of writeable OE remote>
>>> local-branch:sledz/maintenance.
>>
>> Sorry, but i need some more guidance here. Everytime i think i made it another problem drives me crazy. :(
>>
>> Assuming i've a fresh local clone created with
>>
>> git clone git@git.openembedded.org:openembedded
>>
>> What are the exact next stepts?
>>
>> I tried
>>
>> git checkout sledz/maintenance
>> git rebase -i origin/2011.03-maintenance # unwanted commits removed
>> git push origin sledz/maintenance
>>
>> The last results in
>>
>> To git@git.openembedded.org:openembedded
>> ! [rejected] sledz/maintenance -> sledz/maintenance (non-fast-forward)
>> error: failed to push some refs to 'git@git.openembedded.org:openembedded'
>> To prevent you from losing history, non-fast-forward updates were rejected
>> Merge the remote changes (e.g. 'git pull') before pushing again. See the
>> 'Note about fast-forwards' section of 'git push --help' for details.
>
> You either need to do the git push
> git@git.openembedded.org:openembedded :sledz/maintenance (to delete
> the old one) and if that fails (it used to be that only admins could
> delete branches, just push instead to sledz/pull-request-19dec2011 or
> so :)
Could not delete the remote branch (admins only).
Please pull from branch sledz/pull.
Thanx,
Steffen
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance 0/5] pull request 20111214
2011-12-20 7:43 ` Steffen Sledz
@ 2011-12-20 14:55 ` Tom Rini
0 siblings, 0 replies; 17+ messages in thread
From: Tom Rini @ 2011-12-20 14:55 UTC (permalink / raw)
To: Steffen Sledz; +Cc: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 6069 bytes --]
On Dec 20, 2011, at 12:43 AM, Steffen Sledz wrote:
> Am 19.12.2011 18:40, schrieb Tom Rini:
>> On Mon, Dec 19, 2011 at 9:32 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>> On 19.12.2011 16:28, Tom Rini wrote:
>>>> On Mon, Dec 19, 2011 at 8:22 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>>> On 19.12.2011 15:39, Tom Rini wrote:
>>>>>> On Mon, Dec 19, 2011 at 12:17 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>>>>> On 15.12.2011 07:37, Steffen Sledz wrote:
>>>>>>>> Am 14.12.2011 19:07, schrieb Tom Rini:
>>>>>>>>> On Wed, Dec 14, 2011 at 4:40 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>>>>>>>> Hi Tom,
>>>>>>>>>>
>>>>>>>>>> please pull these 5 commits cherry-picked from oe.dev.
>>>>>>>>>> All of them are bugfixes and tested in our own environment.
>>>>>>>>>>
>>>>>>>>>> Thx,
>>>>>>>>>> Steffen
>>>>>>>>>>
>>>>>>>>>> The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796:
>>>>>>>>>>
>>>>>>>>>> Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/maintenance (2011-12-09 14:06:08 +0100)
>>>>>>>>>>
>>>>>>>>>> are available in the git repository at:
>>>>>>>>>>
>>>>>>>>>> git://git.openembedded.org/openembedded sledz/maintenance
>>>>>>>>>> http://cgit.openembedded.org/cgit.cgi/openembedded/log/?h=sledz/maintenance
>>>>>>>>>>
>>>>>>>>>> Stefan Schmidt (2):
>>>>>>>>>> llvm2.7_2.7: Add patch for build errors on newer gcc / glibc
>>>>>>>>>> combinations
>>>>>>>>>> llvm2.7_2.7.bb: Update patch to use c++ include style.
>>>>>>>>>>
>>>>>>>>>> Steffen Sledz (3):
>>>>>>>>>> live555: replace version 20110314 with 20111120
>>>>>>>>>> icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>>>>>>>>> openjdk: fix problem on build hosts with linux kernel 3.x
>>>>>>>>>
>>>>>>>>> Only 1 2 and 3 made it to the ML.
>>>>>>>>
>>>>>>>> Please have a second look. They all should be there.
>>>>>>>>
>>>>>>>>> 1 and 2 are fine. For 3, we should
>>>>>>>>> grab the old file (someone must have a copy) and stick that on
>>>>>>>>> sources.openembedded.org.
>>>>>>>>
>>>>>>>> The version replacement is not just for the well known live555 download problem. It fixes some other problems too. Also the version introduced by this patch is already uploaded to sources.openembedded.org and the angstrom mirrors.
>>>>>>>
>>>>>>> Ping!
>>>>>>
>>>>>> Sorry for the delay. Especially since I'm now going to ask you to
>>>>>> rebase the branch. Here's what I get after merging your request:
>>>>>> $ git log --oneline origin..
>>>>>> b6cc3be87 Merge branch 'sledz/maintenance' of git://git.openembedded.org/openemb
>>>>>> eda1aaf openjdk: fix problem on build hosts with linux kernel 3.x
>>>>>> 4500148 icedtea6-native: fix problem on build hosts with linux kernel 3.x
>>>>>> cb5b2fb live555: replace version 20110314 with 20111120
>>>>>> 3904feb llvm2.7_2.7.bb: Update patch to use c++ include style.
>>>>>> a992bc4 llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combination
>>>>>> 9826895 Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
>>>>>> ebb70fd gypsy: update to latest upstream version 0.8, and remove version 0.7
>>>>>> 69186cf gypsy: move generic SRC_URI part to gypsy.inc
>>>>>> 7f9e803 gypsy: fix packaging of DBus starter script
>>>>>> 45b8af8 rsyslog: change path for config includes to /etc/rsyslog.d
>>>>>> 77a5200 Revert "gypsy: fix packaging of DBus starter script"
>>>>>> 105f8ae Revert "gypsy: move generic SRC_URI part to gypsy.inc"
>>>>>> 701d1cb Revert "gypsy: update to latest upstream version 0.8, and remove version
>>>>>> 593bb51 Revert "rsyslog: change path for config includes to /etc/rsyslog.d"
>>>>>> de3065d gypsy: update to latest upstream version 0.8, and remove version 0.7
>>>>>> dbb8899 gypsy: move generic SRC_URI part to gypsy.inc
>>>>>> 9bef377 gypsy: fix packaging of DBus starter script
>>>>>> 772286e Merge remote-tracking branch 'upstream/2011.03-maintenance' into sledz/m
>>>>>> ef52795 rsyslog: change path for config includes to /etc/rsyslog.d
>>>>>>
>>>>>> I'm sure it's all unintentional.
>>>>>
>>>>> The pull request contains the last five commits only ("The following changes since commit 9826895e30baa597a5ec433cc0ebd52f5f6c8796").
>>>>>
>>>>> Maybe i need some help in using git here. How should i prepare my branch to fulfil your requirements?
>>>>
>>>> Are others using your branch? If not, git push <name of your writable
>>>> OE remote> :sledz/maintenance to delete your current branch, git
>>>> rebase -i origin/2011.03-maintenance (and remove the commits you no
>>>> longer want) then git push <name of writeable OE remote>
>>>> local-branch:sledz/maintenance.
>>>
>>> Sorry, but i need some more guidance here. Everytime i think i made it another problem drives me crazy. :(
>>>
>>> Assuming i've a fresh local clone created with
>>>
>>> git clone git@git.openembedded.org:openembedded
>>>
>>> What are the exact next stepts?
>>>
>>> I tried
>>>
>>> git checkout sledz/maintenance
>>> git rebase -i origin/2011.03-maintenance # unwanted commits removed
>>> git push origin sledz/maintenance
>>>
>>> The last results in
>>>
>>> To git@git.openembedded.org:openembedded
>>> ! [rejected] sledz/maintenance -> sledz/maintenance (non-fast-forward)
>>> error: failed to push some refs to 'git@git.openembedded.org:openembedded'
>>> To prevent you from losing history, non-fast-forward updates were rejected
>>> Merge the remote changes (e.g. 'git pull') before pushing again. See the
>>> 'Note about fast-forwards' section of 'git push --help' for details.
>>
>> You either need to do the git push
>> git@git.openembedded.org:openembedded :sledz/maintenance (to delete
>> the old one) and if that fails (it used to be that only admins could
>> delete branches, just push instead to sledz/pull-request-19dec2011 or
>> so :)
>
> Could not delete the remote branch (admins only).
>
> Please pull from branch sledz/pull.
Applied, thanks.
--
Tom
[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 169 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2011-12-20 15:02 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-14 11:40 [2011.03-maintenance 0/5] pull request 20111214 Steffen Sledz
2011-12-14 11:40 ` [2011.03-maintenance 1/5] llvm2.7_2.7: Add patch for build errors on newer gcc / glibc combinations Steffen Sledz
2011-12-14 11:40 ` [2011.03-maintenance 2/5] llvm2.7_2.7.bb: Update patch to use c++ include style Steffen Sledz
2011-12-14 11:40 ` [2011.03-maintenance 3/5] live555: replace version 20110314 with 20111120 Steffen Sledz
2011-12-14 11:40 ` [2011.03-maintenance 4/5] icedtea6-native: fix problem on build hosts with linux kernel 3.x Steffen Sledz
2011-12-14 11:41 ` [2011.03-maintenance 5/5] openjdk: " Steffen Sledz
2011-12-14 18:07 ` [2011.03-maintenance 0/5] pull request 20111214 Tom Rini
2011-12-14 18:08 ` Tom Rini
2011-12-15 6:37 ` Steffen Sledz
2011-12-19 7:17 ` Steffen Sledz
2011-12-19 14:39 ` Tom Rini
2011-12-19 15:22 ` Steffen Sledz
2011-12-19 15:28 ` Tom Rini
2011-12-19 16:32 ` Steffen Sledz
2011-12-19 17:40 ` Tom Rini
2011-12-20 7:43 ` Steffen Sledz
2011-12-20 14:55 ` Tom Rini
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.