[OE-core] [PATCH] world-broken: Add libunwind for musl/arm

2016-08-07 Thread Khem Raj
gcc and libunwind race and when libunwind wins
results are build fails for gcc as described
this is only seen on musl/arm since on musl
/usr/include is search before gcc fixed headers
and unwind.h is in fixed headers. So it works
ok on glibc but not on musl due to reversed search
order.

Signed-off-by: Khem Raj 
---
 meta/conf/distro/include/world-broken.inc | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/meta/conf/distro/include/world-broken.inc 
b/meta/conf/distro/include/world-broken.inc
index a5f6371..d4bdddf 100644
--- a/meta/conf/distro/include/world-broken.inc
+++ b/meta/conf/distro/include/world-broken.inc
@@ -47,3 +47,10 @@ EXCLUDE_FROM_WORLD_pn-perf_libc-musl = "1"
 
 # error: 'RTLD_NEXT' was not declared in this scope
 EXCLUDE_FROM_WORLD_pn-gcc-sanitizers_libc-musl = "1"
+
+# gcc fails to build when libuwind is staged before building gcc since
+# it then finds the unwind.h header from libunwind and not from libgcc
+# and on arm specially they are different since libgcc defines some functions
+# as macros which are functions in libunwind and it fails during linking
+# libbacktrace/backtrace.c:76: undefined reference to `_Unwind_GetIP'
+EXCLUDE_FROM_WORLD_pn-libunwind_libc-musl_arm = "1"
-- 
2.9.2

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH] strace: Fix build with mips/mips64 on musl

2016-08-07 Thread Khem Raj
SIGEMT doesnt exist on musl

Signed-off-by: Khem Raj 
---
 .../strace/strace/mips-SIGEMT.patch| 24 ++
 meta/recipes-devtools/strace/strace_4.13.bb|  1 +
 2 files changed, 25 insertions(+)
 create mode 100644 meta/recipes-devtools/strace/strace/mips-SIGEMT.patch

diff --git a/meta/recipes-devtools/strace/strace/mips-SIGEMT.patch 
b/meta/recipes-devtools/strace/strace/mips-SIGEMT.patch
new file mode 100644
index 000..b24378b
--- /dev/null
+++ b/meta/recipes-devtools/strace/strace/mips-SIGEMT.patch
@@ -0,0 +1,24 @@
+SIGEMT is not defined everywhere e.g musl does
+not define it. Therefore check it being defined
+before using it.
+
+Fixes errors e.g.
+../../strace-4.13/tests/signal2name.c:45:7: error: 'SIGEMT' undeclared (first 
use in this function)
+
+Signed-off-by: Khem Raj 
+Upstream-Status: Pending
+
+Index: strace-4.13/tests/signal2name.c
+===
+--- strace-4.13.orig/tests/signal2name.c
 strace-4.13/tests/signal2name.c
+@@ -42,7 +42,9 @@ signal2name(int sig)
+   CASE(SIGEMT);
+   CASE(SIGLOST);
+ #elif defined MIPS
++#ifdef SIGEMT
+   CASE(SIGEMT);
++#endif
+   CASE(SIGIOT);
+   CASE(SIGPWR);
+ #else
diff --git a/meta/recipes-devtools/strace/strace_4.13.bb 
b/meta/recipes-devtools/strace/strace_4.13.bb
index 51ff41e..cae7f21 100644
--- a/meta/recipes-devtools/strace/strace_4.13.bb
+++ b/meta/recipes-devtools/strace/strace_4.13.bb
@@ -12,6 +12,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/strace/strace-${PV}.tar.xz \
file://Makefile-ptest.patch \
file://run-ptest \

file://0001-Fix-build-when-using-non-glibc-libc-implementation-o.patch \
+   file://mips-SIGEMT.patch \
"
 
 SRC_URI[md5sum] = "4b78c7febdd24c79d5147824d1a080a3"
-- 
2.9.2

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH 0/1] bash: fix run-intl ptest failed

2016-08-07 Thread Dengke Du
The following changes since commit 5b61fa04a335a4fdefd435dc25d4bac41ee21e39:

  bitbake: toaster-tests: fix URL given for Chromedriver download (2016-07-29 
09:53:32 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib 
dengke/fix-bash-ptest-run-intl-failed
  
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=dengke/fix-bash-ptest-run-intl-failed

Dengke Du (1):
  bash: fix run-intl ptest failed

 meta/recipes-extended/bash/bash/fix-run-intl.patch | 116 +
 meta/recipes-extended/bash/bash_4.3.30.bb  |   3 +-
 2 files changed, 118 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-extended/bash/bash/fix-run-intl.patch

-- 
2.8.1

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH 1/1] bash: fix run-intl ptest failed

2016-08-07 Thread Dengke Du
1. Filter the extra white space in intl.right

   When the sub-test unicode2.sub of intl.tests executed, it produced
   compact results without extra white space, compared to intl.right,
   it failed.

   So we need to filter the extra white space in intl.right.

2. Delete the '%q' in unicode3.sub

   In sub-test unicode3.sub of intl.tests have this:

printf %q "$payload"

   The payload variable was assigned by ASCII characters, when using
   '%q' format strings, it means print the associated argument shell-quoted.

   But when the strings contain the non-alpha && non-digit && non-punctuation &&
   non-ISO 646 character(7-bit), it would output like this: " $'...', ANSI-C
   style quoted string. We can check the bash source code at:

http://git.savannah.gnu.org/cgit/bash.git/tree/builtins/printf.def#n557
http://git.savannah.gnu.org/cgit/bash.git/tree/lib/sh/strtrans.c#n331

   So we need to delete the format strings '%q', in this way the comparing
   could pass.

NOTE:
   Ensure the system contain fr-fr & de-de locales

   Some tests of intl.tests need to change locales to accomplish. So you need 
add
   the following to a conf file:

IMAGE_LINGUAS = "en-us fr-fr de-de"

Signed-off-by: Dengke Du 
---
 meta/recipes-extended/bash/bash/fix-run-intl.patch | 116 +
 meta/recipes-extended/bash/bash_4.3.30.bb  |   3 +-
 2 files changed, 118 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-extended/bash/bash/fix-run-intl.patch

diff --git a/meta/recipes-extended/bash/bash/fix-run-intl.patch 
b/meta/recipes-extended/bash/bash/fix-run-intl.patch
new file mode 100644
index 000..5f59066
--- /dev/null
+++ b/meta/recipes-extended/bash/bash/fix-run-intl.patch
@@ -0,0 +1,116 @@
+From 56b869258922da108d35524dc124a1a64daa981a Mon Sep 17 00:00:00 2001
+From: Dengke Du 
+Date: Wed, 3 Aug 2016 23:13:00 -0400
+Subject: [PATCH] fix run-intl failed
+
+1. Filter extra white space of intl.right
+
+   Due to the extra white space of intl.right, when the result of
+   sub-test unicode2.sub of intl.tests compared to it, the test
+   failed.
+
+   So we need to filter the extra white space of intl.right.
+
+2. Delete the '%q' in unicode3.sub
+
+   In sub-test unicode3.sub of intl.tests, the payload value is:
+
+   payload=$'\065\247\100\063\231\053\306\123\070\237\242\352\263'
+
+   It used quoted string expansion(escaped octal) to assign ASCII
+   characters to variables. So when the test run the following:
+
+   printf %q "$payload"
+
+   It produced:
+
+   $'5\247@3\231+\306S8\237\242\352\263'
+
+   When compared to the intl.right(contain the converted character), it failed.
+
+   The format strings '%q' means print the associated argument shell-quoted.
+   Soucre code is here:
+
+   http://git.savannah.gnu.org/cgit/bash.git/tree/builtins/printf.def#n557
+   http://git.savannah.gnu.org/cgit/bash.git/tree/lib/sh/strtrans.c#n331
+
+   If the strings contain the non-alpha && non-digit && non-punctuation &&
+   non-ISO 646 character(7-bit), it would output like this: " $'...' " ANSI-C
+   style quoted string, just like the above.
+
+Upstream-Status: Pending
+
+Signed-off-by: Dengke Du 
+---
+ tests/intl.right   | 28 ++--
+ tests/unicode3.sub |  2 +-
+ 2 files changed, 15 insertions(+), 15 deletions(-)
+
+diff --git a/tests/intl.right b/tests/intl.right
+index acf108a..0c0c571 100644
+--- a/tests/intl.right
 b/tests/intl.right
+@@ -18,33 +18,33 @@ aéb
+ 1.
+ 1,
+ Passed all 1378 Unicode tests
+-000   303 277 012
++000 303 277 012
+ 003
+-000   303 277 012
++000 303 277 012
+ 003
+-000   303 277 012
++000 303 277 012
+ 003
+-000   303 277 012
++000 303 277 012
+ 003
+-000   357 277 277 012
++000 357 277 277 012
+ 004
+-000   357 277 277 012
++000 357 277 277 012
+ 004
+-000   012
++000 012
+ 001
+-000   012
++000 012
+ 001
+-000   012
++000 012
+ 001
+-000   012
++000 012
+ 001
+-000   303 277 012
++000 303 277 012
+ 003
+-000   303 277 012
++000 303 277 012
+ 003
+-000   303 277 012
++000 303 277 012
+ 003
+-000   101 040 302 243 040 305 222 012

Re: [OE-core] [RFT] binutils 2.27

2016-08-07 Thread Richard Purdie
On Sun, 2016-08-07 at 01:39 -0700, Khem Raj wrote:
> I have put together upgrade for binutils 2.27 here ( kraj/master
> branch )
> 
> https://github.com/kraj/openembedded-core/commit/b98f5761d2285ffd773e
> c6ecb901b799302ebd6b
> 
> I have started bunch of test builds. but I would appreciate any help
> in testing it out in your
> environments and report any issues you see.

I ran this through the autobuilder:

bitbake world shows issues in libunwind (from gold?):

https://autobuilder.yoctoproject.org/main/builders/nightly-world/builds
/889/steps/BuildImages/logs/stdio

bitbake world with no x11 also shows it:

https://autobuilder.yoctoproject.org/main/builders/nightly-no-x11/build
s/231/steps/BuildImages/logs/stdio

Other than that, things don't seem too bad though.

Cheers,

Richard


-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH 1/2] packagegroup-core-eclipse-debug: add openssh server to support openssh-sftp-server

2016-08-07 Thread Jacob Kroon

On 08/08/2016 05:43 AM, bavery wrote:

The openssh-sftp-server was already part of the pakagegroup. Adding the 
openssh-server
lets the sftp server start up correctly.


If openssh-sftp-server cannot run without openssh, shouldn't it RDEPEND 
on it instead ?




YOCTO #9362

Signed-off-by: bavery 
---
 recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb 
b/recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb
index c45463f..c32fef5 100644
--- a/recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb
+++ b/recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb
@@ -6,4 +6,5 @@ RDEPENDS_${PN} = "\
 gdbserver \
 tcf-agent \
 openssh-sftp-server \
+openssh \
 "



--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH 1/1] bitbake.conf: change localedir

2016-08-07 Thread Chen Qi
Previously, localedir is set to "${libdir}/locale". This would result
in locale database installed in '/usr/lib64/locale' in some multilib case.
For example, if we build out a multilib x86-64 self-hosted image and we try
to build projects on this host, things broke and the following error appears.

  Please use a locale setting which supports utf-8.
  Python can't change the filesystem locale after loading so we need a utf-8 
when python starts or things won't work.

This is because '/usr/lib/locale' is the default one. And actually the
nativesdk-glibc is now set to use '/usr/lib/locale'.

Thus, we change the setting of 'localedir' to '${nonarch_libdir}/locale' to
fix the above problem.

Signed-off-by: Chen Qi 
---
 meta/conf/bitbake.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index c32a3f8..ed77ee3 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -44,7 +44,7 @@ export libdir = "${exec_prefix}/${baselib}"
 export libexecdir = "${exec_prefix}/libexec"
 export includedir = "${exec_prefix}/include"
 export oldincludedir = "${exec_prefix}/include"
-localedir = "${libdir}/locale"
+localedir = "${nonarch_libdir}/locale"
 
 # Linkage between native/cross/nativesdk layouts
 base_bindir_native = "/bin"
-- 
1.9.1

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH 0/1] bitbake.conf: change localedir

2016-08-07 Thread Chen Qi
The following changes since commit c4dda05cb9755cb865c1d1bd142196f8a9f45d3d:

  Revert "packagegroup-core-x11-base.bb: replace pointercal with 
pointercal-xinput" (2016-08-04 20:54:57 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib ChenQi/locale-fix
  
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=ChenQi/locale-fix

Chen Qi (1):
  bitbake.conf: change localedir

 meta/conf/bitbake.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
1.9.1

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH V2 0/9] Fix udev dirs

2016-08-07 Thread Robert Yang


Hi Ross,

Do you have any comments please ?

// Robert

On 07/27/2016 05:27 PM, Robert Yang wrote:

* V2
   - lib/udev/rules.d -> lib/udev in bitbake.conf
   - Remove duplicated udev setting for more recipes

// Robert

The following changes since commit b32d430c3c7dccf3a8d06ab492d648893a05950f:

   dpkg: use snapshot.debian.org for SRC_URI (2016-07-26 08:56:08 +0100)

are available in the git repository at:

   git://git.openembedded.org/openembedded-core-contrib rbt/udev
   
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/udev

Robert Yang (9):
   bitbake.conf: add eudev's udevdir to FILES_${PN}
   systemd: install udev.pc
   libinput: fix udevdir
   ofono: remove duplicated udev setting from FILES_${PN}
   mdadm: remove duplicated udev setting from FILES_${PN}
   xf86-input-vmmouse: remove duplicated udev setting from FILES_${PN}
   eudev: don't move udev directory
   pcmciautils: remove duplicated udev setting from FILES_${PN}
   bluez5: remove duplicated udev setting from FILES_${PN}

  meta/conf/bitbake.conf |  3 ++-
  meta/recipes-bsp/pcmciautils/pcmciautils_018.bb|  2 --
  meta/recipes-connectivity/bluez5/bluez5.inc|  2 +-
  meta/recipes-connectivity/ofono/ofono.inc  |  2 +-
  meta/recipes-core/systemd/systemd_230.bb   |  2 ++
  meta/recipes-core/udev/eudev_3.2.bb| 10 +-
  meta/recipes-extended/mdadm/mdadm_3.4.bb   |  2 --
  meta/recipes-graphics/wayland/libinput_1.3.0.bb|  4 +++-
  meta/recipes-graphics/xorg-driver/xf86-input-vmmouse_13.1.0.bb |  2 +-
  9 files changed, 11 insertions(+), 18 deletions(-)


--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH 0/1] packagefeed-stability.bbclass: fix multilib + rpm

2016-08-07 Thread Robert Yang

ping.

// Robert

On 07/27/2016 03:51 PM, Robert Yang wrote:

The following changes since commit b32d430c3c7dccf3a8d06ab492d648893a05950f:

   dpkg: use snapshot.debian.org for SRC_URI (2016-07-26 08:56:08 +0100)

are available in the git repository at:

   git://git.openembedded.org/openembedded-core-contrib rbt/feed
   
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/feed

Robert Yang (1):
   packagefeed-stability.bbclass: fix multilib + rpm

  meta/classes/packagefeed-stability.bbclass | 16 ++--
  1 file changed, 14 insertions(+), 2 deletions(-)


--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH v2] busybox: Fix busybox-init on non-tty consoles

2016-08-07 Thread Stefan Agner
When using non-tty consoles (e.g. VirtIO console /dev/hvc0) the
current init system fails with:
process '/sbin/getty 115200 hvc0' (pid 545) exited. Scheduling for restart.
can't open /dev/ttyhvc0: No such file or directory

The first field needs to be a valid device. The BusyBox inittab example
explains as follows:
": WARNING: This field has a non-traditional meaning for BusyBox init!

The id field is used by BusyBox init to specify the controlling tty for
the specified process to run on.  The contents of this field are
appended to "/dev/" and used as-is."

Signed-off-by: Stefan Agner 
---
 meta/recipes-core/busybox/busybox.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/busybox/busybox.inc 
b/meta/recipes-core/busybox/busybox.inc
index 5e91a26..39c2eef 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -286,8 +286,8 @@ do_install () {
 for i in $tmp
 do
 j=`echo ${i} | sed s/\;/\ /g`
-label=`echo ${i} | sed -e 's/tty//' -e 
's/^.*;//' -e 's/;.*//'`
-echo "tty$label::respawn:${base_sbindir}/getty 
${j}" >> ${D}${sysconfdir}/inittab
+id=`echo ${i} | sed -e 's/^.*;//' -e 's/;.*//'`
+echo "$id::respawn:${base_sbindir}/getty ${j}" 
>> ${D}${sysconfdir}/inittab
 done
 fi
 fi
-- 
2.9.0

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH 2/3] strace: 4.12 -> 4.13

2016-08-07 Thread Robert Yang



On 08/07/2016 10:43 PM, Khem Raj wrote:

this broke musl/mips64 see

http://errors.yoctoproject.org/Errors/Details/74499/


Sorry, I will look into it later.

// Robert



On Tue, Aug 2, 2016 at 1:51 AM, Robert Yang  wrote:

Updated Makefile-ptest.patch

Signed-off-by: Robert Yang 
---
  meta/recipes-devtools/strace/strace/Makefile-ptest.patch | 12 
  .../strace/{strace_4.12.bb => strace_4.13.bb}|  4 ++--
  2 files changed, 6 insertions(+), 10 deletions(-)
  rename meta/recipes-devtools/strace/{strace_4.12.bb => strace_4.13.bb} (91%)

diff --git a/meta/recipes-devtools/strace/strace/Makefile-ptest.patch 
b/meta/recipes-devtools/strace/strace/Makefile-ptest.patch
index 824031e..2b76e8a 100644
--- a/meta/recipes-devtools/strace/strace/Makefile-ptest.patch
+++ b/meta/recipes-devtools/strace/strace/Makefile-ptest.patch
@@ -10,23 +10,22 @@ Signed-off-by: Chong Lu 
   2 files changed, 19 insertions(+), 1 deletion(-)

  diff --git a/configure.ac b/configure.ac
-index 0209bac..b969e25 100644
  --- a/configure.ac
  +++ b/configure.ac
  @@ -36,7 +36,7 @@ AC_INIT([strace],
   AC_CONFIG_SRCDIR([strace.c])
   AC_CONFIG_AUX_DIR([.])
   AC_CONFIG_HEADERS([config.h])
--AM_INIT_AUTOMAKE([foreign nostdinc dist-xz no-dist-gzip silent-rules 
parallel-tests])
-+AM_INIT_AUTOMAKE([foreign nostdinc dist-xz no-dist-gzip silent-rules 
serial-tests])
+-AM_INIT_AUTOMAKE([foreign nostdinc dist-xz silent-rules parallel-tests])
++AM_INIT_AUTOMAKE([foreign nostdinc dist-xz silent-rules serial-tests])
   AM_MAINTAINER_MODE
   AC_CANONICAL_HOST

  diff --git a/tests/Makefile.am b/tests/Makefile.am
-index 0f23b4b..429f7e9 100644
+index 9023029..e1917fa 100644
  --- a/tests/Makefile.am
  +++ b/tests/Makefile.am
-@@ -332,3 +332,21 @@ ksysent.h: $(srcdir)/ksysent.sed
+@@ -784,3 +784,21 @@ ksysent.h: $(srcdir)/ksysent.sed

   BUILT_SOURCES = ksysent.h
   CLEANFILES = ksysent.h $(TESTS:=.tmp)
@@ -48,6 +47,3 @@ index 0f23b4b..429f7e9 100644
  +  sed -i -e 's/$${srcdir=.}/./g' $(DESTDIR)/$(TESTDIR)/$$file; \
  +  done
  +  for i in net net-fd scm_rights-fd sigaction; do sed -i -e 
's/$$srcdir/./g' $(DESTDIR)/$(TESTDIR)/$$i.test; done
---
-1.9.1
-
diff --git a/meta/recipes-devtools/strace/strace_4.12.bb 
b/meta/recipes-devtools/strace/strace_4.13.bb
similarity index 91%
rename from meta/recipes-devtools/strace/strace_4.12.bb
rename to meta/recipes-devtools/strace/strace_4.13.bb
index 70d7402..1a576b3 100644
--- a/meta/recipes-devtools/strace/strace_4.12.bb
+++ b/meta/recipes-devtools/strace/strace_4.13.bb
@@ -14,8 +14,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/strace/strace-${PV}.tar.xz \
 
file://0001-Fix-build-when-using-non-glibc-libc-implementation-o.patch \
 "

-SRC_URI[md5sum] = "efb8611fc332e71ec419c53f59faa93e"
-SRC_URI[sha256sum] = 
"51144b78cb9ba22211b95a5aafe0af3694c0d575b25975d80ca9dd4dfd7c1e59"
+SRC_URI[md5sum] = "4b78c7febdd24c79d5147824d1a080a3"
+SRC_URI[sha256sum] = 
"d48f732576c91ece36a5843d63f9be054c40ef59f1e4773986042636861625d7"

  inherit autotools ptest bluetooth

--
2.9.0

--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core



--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH 1/1] xmlto: fix depends for native

2016-08-07 Thread Robert Yang
xmlto-native requires xsltproc which is provided by libxslt to run.
Fixed:
xmlto: Can't continue, xsltproc tool not found or not executable.

Signed-off-by: Robert Yang 
---
 meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb 
b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
index 886e7b4..d6f2e92 100644
--- a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
+++ b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
@@ -20,9 +20,9 @@ RDEPENDS_${PN} = "docbook-xml-dtd4 \
   util-linux \
   libxml2 \
   bash \
+  libxslt \
 "
 RDEPENDS_${PN}_append_class-target = " \
-  libxslt-bin \
   coreutils \
 "
 CACHED_CONFIGUREVARS += "ac_cv_path_TAIL=${bindir}/tail"
-- 
2.9.0

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH 0/1] xmlto: fix depends for native

2016-08-07 Thread Robert Yang
The following changes since commit c4dda05cb9755cb865c1d1bd142196f8a9f45d3d:

  Revert "packagegroup-core-x11-base.bb: replace pointercal with 
pointercal-xinput" (2016-08-04 20:54:57 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib rbt/xml
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/xml

Robert Yang (1):
  xmlto: fix depends for native

 meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.9.0

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH] tmpfiles.d: don't create the symbol link

2016-08-07 Thread Mingli Yu
Don't create symbol link for existing file
/etc/os-release and /etc/localtime exist in our
system, so remove below two lines in /usr/lib/tmpfiles.d/etc.conf
L /etc/os-release - - - - ../usr/lib/os-release
L /etc/localtime - - - - ../usr/share/zoneinfo/UTC

* The os-release is shipped by base-files in other distributions.
  Recently, the base-files changed the os-release directory from
  /etc/os-release to /usr/lib/os-release, which causes systemd boot
  up failed, so a fix was added into systemd is

  ln -s /usr/lib/os-release /etc/os-release

  However, the os-release file shipped by os-release in Yocto project.
  The location is still /etc/os-release, so systemd doesn't
  need to create the symbol link.

* /etc/localtime file shipped by tzdata-2016e in Yocto project, so
  no need to create symbol link as:
  ln -s /usr/share/zoneinfo/UTC /etc/localtime

Signed-off-by: Mingli Yu 
---
 ...1-tmpfiles.d-don-t-create-the-symbol-link.patch | 51 ++
 meta/recipes-core/systemd/systemd_230.bb   |  1 +
 2 files changed, 52 insertions(+)
 create mode 100644 
meta/recipes-core/systemd/systemd/0001-tmpfiles.d-don-t-create-the-symbol-link.patch

diff --git 
a/meta/recipes-core/systemd/systemd/0001-tmpfiles.d-don-t-create-the-symbol-link.patch
 
b/meta/recipes-core/systemd/systemd/0001-tmpfiles.d-don-t-create-the-symbol-link.patch
new file mode 100644
index 000..72cd9f8
--- /dev/null
+++ 
b/meta/recipes-core/systemd/systemd/0001-tmpfiles.d-don-t-create-the-symbol-link.patch
@@ -0,0 +1,51 @@
+From 6f7977d79fd464f8615d68476583f4b1732865b1 Mon Sep 17 00:00:00 2001
+From: Wenlin Kang 
+Date: Wed, 27 Jul 2016 05:20:24 +
+Subject: [PATCH] tmpfiles.d: don't create the symbol link
+
+Don't create symbol link for existing file
+/etc/os-release and /etc/localtime exist in our
+system, so remove below two lines in /usr/lib/tmpfiles.d/etc.conf
+L /etc/os-release - - - - ../usr/lib/os-release
+L /etc/localtime - - - - ../usr/share/zoneinfo/UTC
+
+* The os-release is shipped by base-files in other distributions.
+  Recently, the base-files changed the os-release directory from
+  /etc/os-release to /usr/lib/os-release, which causes systemd boot
+  up failed, so a fix was added into systemd is
+
+  ln -s /usr/lib/os-release /etc/os-release
+
+  However, the os-release file shipped by os-release in Yocto project.
+  The location is still /etc/os-release, so systemd doesn't need
+  to create the symbol link.
+
+* /etc/localtime file shipped by tzdata-2016e in Yocto project, so
+  no need to create symbol link as:
+  ln -s /usr/share/zoneinfo/UTC /etc/localtime
+
+Upstream-Status: Inappropriate [Yocto specific]
+
+Signed-off-by: Yue Tao 
+Signed-off-by: Wenlin Kang 
+Signed-off-by: Mingli Yu 
+---
+ tmpfiles.d/etc.conf.m4 | 2 --
+ 1 file changed, 2 deletions(-)
+
+diff --git a/tmpfiles.d/etc.conf.m4 b/tmpfiles.d/etc.conf.m4
+index ef7b9b9..5691a07 100644
+--- a/tmpfiles.d/etc.conf.m4
 b/tmpfiles.d/etc.conf.m4
+@@ -7,8 +7,6 @@
+ 
+ # See tmpfiles.d(5) for details
+ 
+-L /etc/os-release - - - - ../usr/lib/os-release
+-L /etc/localtime - - - - ../usr/share/zoneinfo/UTC
+ L+ /etc/mtab - - - - ../proc/self/mounts
+ m4_ifdef(`HAVE_SMACK_RUN_LABEL',
+ t /etc/mtab - - - - security.SMACK64=_
+-- 
+2.8.2
+
diff --git a/meta/recipes-core/systemd/systemd_230.bb 
b/meta/recipes-core/systemd/systemd_230.bb
index 374a197..55af780 100644
--- a/meta/recipes-core/systemd/systemd_230.bb
+++ b/meta/recipes-core/systemd/systemd_230.bb
@@ -36,6 +36,7 @@ SRC_URI += " \

file://0021-include-missing.h-for-getting-secure_getenv-definiti.patch \

file://0022-socket-util-don-t-fail-if-libc-doesn-t-support-IDN.patch \
file://udev-re-enable-mount-propagation-for-udevd.patch \
+   file://0001-tmpfiles.d-don-t-create-the-symbol-link.patch \
 "
 SRC_URI_append_libc-uclibc = "\

file://0002-units-Prefer-getty-to-agetty-in-console-setup-system.patch \
-- 
2.8.1

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH] qpdf: add new recipe

2016-08-07 Thread Fan Xin


Why do we need this in OE-Core compared to a layer like meta
-openembedded?



Hi, thanks for your comment.
I have sent this patch to meta-openembedded.

I sent this patch because the qpdf is dependence of cups-filters.
And I want to replace the foomatic-filters with cups-filters.
So firstly I sent qpdf recipe to OE-Core.

Best Regards,
Fan

--

--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH] ltp: upgrade to 20160510

2016-08-07 Thread Fan Xin



As this recipe fetches from git if you don't change SRCREV then it's not
an upgrade.


Yes, you are right. I will modify the SRCREV and resend the patch.
Thanks for your comment.

Best Regards,
Fan

--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH v2] Replace foomatic-filters with cups-filters

2016-08-07 Thread Fan Xin

Hi

I notice that the newest version of cups-filters is 1.10.0 .
https://www.openprinting.org/download/cups-filters/

So I make a patch to upgrade the cups-filters and make some updates to 
the recipe file.


https://github.com/fan-xin/meta-printing/commit/cc2981c93c5fdfc1c19cffa031cc7207da5898ed

Could you merge this patch to meta-printing.

Best Regards,
Fan

On 2016年08月03日 10:42, Fan Xin wrote:



On 2016年08月03日 10:12, Stephen Arnold wrote:

sorry, you missed a couple of replies I guess...

It's in the Ross repo now:

https://github.com/rossburton/meta-printing

Steve



Hey, Ross

If possible, please also add me.
Thanks.

Fan


--
=
株式会社富士通コンピュータテクノロジーズ
組込みシステム技術統括部 第一ファームウェア技術部
樊 昕 Fan Xin
fan@jp.fujitsu.com

┏┓ 
┗■ 【ubinux V15】のリリースを開始しました!
「SDN(Open vSwitch)」や「クラウド管理(OpenStack Heat)」などに対応
-
詳細>>http://elsc.utsfd.cs.fujitsu.co.jp/location_elsc.php?id=0024
※"ubinux"は組込み装置向け当社独自のLinuxディストリビューションです
━━━
--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH 2/2] base-files: restrict resize to run on serial consoles only in profile │·

2016-08-07 Thread bavery
We don't need/wan't to run resize on an ssh connection. It's useless and
it breaks the Eclipse SSH debug connection. So, we added a check.

YOCTO #9362

Signed-off-by: bavery 
---
 recipes-core/base-files/base-files/profile | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/recipes-core/base-files/base-files/profile 
b/recipes-core/base-files/base-files/profile
index e98e786..ba1b9ba 100644
--- a/recipes-core/base-files/base-files/profile
+++ b/recipes-core/base-files/base-files/profile
@@ -6,7 +6,7 @@ EDITOR="vi" # needed for packages like 
cron, git-commit
 test -z "$TERM" && TERM="vt100"# Basic terminal capab. For screen etc.
 
 if [ ! -e /etc/localtime -a ! -e /etc/TZ ]; then
-   TZ="UTC"# Time Zone. Look at 
http://theory.uwinnipeg.ca/gnu/glibc/libc_303.html 
+   TZ="UTC"# Time Zone. Look at 
http://theory.uwinnipeg.ca/gnu/glibc/libc_303.html
# for an explanation of how to set this to your 
local timezone.
export TZ
 fi
@@ -29,10 +29,11 @@ if [ -d /etc/profile.d ]; then
 fi
 
 if [ -x /usr/bin/resize ];then
-  /usr/bin/resize >/dev/null
+  # Make sure we are on a serial console (i.e. the device used starts with 
/dev/tty),
+  # otherwise we confuse e.g. the eclipse launcher which tries do use ssh
+  test `tty | cut -c1-8` = "/dev/tty" && resize >/dev/null
 fi
 
 export PATH PS1 OPIEDIR QPEDIR QTDIR EDITOR TERM
 
 umask 022
-
-- 
1.9.1

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH 1/2] packagegroup-core-eclipse-debug: add openssh server to support openssh-sftp-server

2016-08-07 Thread bavery
The openssh-sftp-server was already part of the pakagegroup. Adding the 
openssh-server
lets the sftp server start up correctly.

YOCTO #9362

Signed-off-by: bavery 
---
 recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb 
b/recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb
index c45463f..c32fef5 100644
--- a/recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb
+++ b/recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb
@@ -6,4 +6,5 @@ RDEPENDS_${PN} = "\
 gdbserver \
 tcf-agent \
 openssh-sftp-server \
+openssh \
 "
-- 
1.9.1

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH 0/2] Fixes for Eclipse Qemu debug

2016-08-07 Thread bavery
This patch set fixes YOCTO #9362.  The busybox resize utility was running on
ssh connections from Eclipse and causing Eclipse to fail to start gdbserver.
Furthermore, the opensftp server wasn't starting up correctly without the
openssh-server.

Thanks go to Max Krummenacher  for suggesting a good 
solution
to the serial/ssh connection issue in basefiles:etc/profile!

-Brian



The following changes since commit dfc016fbf13e62f7767edaf7abadf1d1b72680b2:

  maintainers.inc: remove augeas (2016-08-04 20:56:11 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib bavery/eclipse-resize-fixup
  
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=bavery/eclipse-resize-fixup

bavery (2):
  packagegroup-core-eclipse-debug: add openssh server to support
openssh-sftp-server
  base-files: restrict resize to run on serial consoles only  in profile

  │·

 recipes-core/base-files/base-files/profile| 7 ---
 recipes-core/packagegroups/packagegroup-core-eclipse-debug.bb | 1 +
 2 files changed, 5 insertions(+), 3 deletions(-)

--
1.9.1
-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH] busybox: Fix busybox-init on non-tty consoles

2016-08-07 Thread Khem Raj

> On Aug 7, 2016, at 6:30 PM, Stefan Agner  wrote:
> 
> When using non-tty consoles (e.g. VirtIO console /dev/hvc0) the
> current init system fails with:
> process '/sbin/getty 115200 hvc0' (pid 545) exited. Scheduling for restart.
> can't open /dev/ttyhvc0: No such file or directory
> 
> The first field needs to be a valid device. The BusyBox inittab example
> explains as follows:
> ": WARNING: This field has a non-traditional meaning for BusyBox init!
> 
> The id field is used by BusyBox init to specify the controlling tty for
> the specified process to run on.  The contents of this field are
> appended to "/dev/" and used as-is."
> 
> Signed-off-by: Stefan Agner 
> ---
> meta/recipes-core/busybox/busybox.inc | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/meta/recipes-core/busybox/busybox.inc 
> b/meta/recipes-core/busybox/busybox.inc
> index 5e91a26..4765c28 100644
> --- a/meta/recipes-core/busybox/busybox.inc
> +++ b/meta/recipes-core/busybox/busybox.inc
> @@ -286,8 +286,8 @@ do_install () {
> for i in $tmp
> do
> j=`echo ${i} | sed s/\;/\ /g`
> -label=`echo ${i} | sed -e 's/tty//' -e 
> 's/^.*;//' -e 's/;.*//'`
> -echo 
> "tty$label::respawn:${base_sbindir}/getty ${j}" >> ${D}${sysconfdir}/inittab
> +id=`echo ${i} | -e 's/^.*;//' -e 's/;.*//‘`

what cmd is this piping it to now ?

> +echo "$id::respawn:${base_sbindir}/getty 
> ${j}" >> ${D}${sysconfdir}/inittab
> done
> fi
> fi
> --
> 2.9.0
> 



signature.asc
Description: Message signed with OpenPGP using GPGMail
-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH] busybox: Fix busybox-init on non-tty consoles

2016-08-07 Thread Stefan Agner
When using non-tty consoles (e.g. VirtIO console /dev/hvc0) the
current init system fails with:
process '/sbin/getty 115200 hvc0' (pid 545) exited. Scheduling for restart.
can't open /dev/ttyhvc0: No such file or directory

The first field needs to be a valid device. The BusyBox inittab example
explains as follows:
": WARNING: This field has a non-traditional meaning for BusyBox init!

The id field is used by BusyBox init to specify the controlling tty for
the specified process to run on.  The contents of this field are
appended to "/dev/" and used as-is."

Signed-off-by: Stefan Agner 
---
 meta/recipes-core/busybox/busybox.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/busybox/busybox.inc 
b/meta/recipes-core/busybox/busybox.inc
index 5e91a26..4765c28 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -286,8 +286,8 @@ do_install () {
 for i in $tmp
 do
 j=`echo ${i} | sed s/\;/\ /g`
-label=`echo ${i} | sed -e 's/tty//' -e 
's/^.*;//' -e 's/;.*//'`
-echo "tty$label::respawn:${base_sbindir}/getty 
${j}" >> ${D}${sysconfdir}/inittab
+id=`echo ${i} | -e 's/^.*;//' -e 's/;.*//'`
+echo "$id::respawn:${base_sbindir}/getty ${j}" 
>> ${D}${sysconfdir}/inittab
 done
 fi
 fi
-- 
2.9.0

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH] Update dnsmasq to version 2.76

2016-08-07 Thread Paul Eggleton
Hi Terry,

Some feedback on your patch:

* The dnsmasq recipe is in meta-networking, not OE-Core. Accordingly this 
patch should be sent to the openembedded-de...@lists.openembedded.org mailing 
list rather than this one.

* Please include "Signed-off-by" in your commit message.

* Please use -M with git-format-patch or git-send-email in order to have 
renames detected and reflected in the patch.

* The shortlog (first line of the commit message) should start with whichever 
recipe, module or area is being changed. Thus for this patch it should be 
"dnsmasq: update to version 2.76".

* If you make other changes in the patch that are not directly related to the 
upgrade (such as base_contains -> bb.utils.contains), please explicitly 
mention them in the commit message.

If you could please send a v2 of this patch with the above corrected to the 
openembedded-devel list that would be much appreciated.

Thanks,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre
-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH] mmc-utils: update to latest git revision

2016-08-07 Thread Richard Purdie
On Sun, 2016-08-07 at 23:48 +0900, Nobuhiro Iwamatsu wrote:
> From: Nobuhiro Iwamatsu 
> 
> This commit update to latest git revision and add SRCPV to PV.

Why do we need a git revision of this rather than a released version?

Cheers,

Richard

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH] mmc-utils: update to latest git revision

2016-08-07 Thread Nobuhiro Iwamatsu
From: Nobuhiro Iwamatsu 

This commit update to latest git revision and add SRCPV to PV.

Signed-off-by: Nobuhiro Iwamatsu 
---
 meta/recipes-devtools/mmc/mmc-utils_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/mmc/mmc-utils_git.bb 
b/meta/recipes-devtools/mmc/mmc-utils_git.bb
index 0a8da19..775c1e4 100644
--- a/meta/recipes-devtools/mmc/mmc-utils_git.bb
+++ b/meta/recipes-devtools/mmc/mmc-utils_git.bb
@@ -4,9 +4,9 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = 
"file://mmc.c;beginline=1;endline=20;md5=fae32792e20f4d27ade1c5a762d16b7d"
 
 SRCBRANCH ?= "master"
-SRCREV = "bb779acfc385d135b32a6998c1d1fceef0491400"
+SRCREV = "a3d3331e6854a4607133bed152988d51250107ca"
 
-PV = "0.1"
+PV = "0.1+git${SRCPV}"
 
 SRC_URI = 
"git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git;branch=${SRCBRANCH}"
 
-- 
2.8.1

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH 2/3] strace: 4.12 -> 4.13

2016-08-07 Thread Khem Raj
this broke musl/mips64 see

http://errors.yoctoproject.org/Errors/Details/74499/

On Tue, Aug 2, 2016 at 1:51 AM, Robert Yang  wrote:
> Updated Makefile-ptest.patch
>
> Signed-off-by: Robert Yang 
> ---
>  meta/recipes-devtools/strace/strace/Makefile-ptest.patch | 12 
> 
>  .../strace/{strace_4.12.bb => strace_4.13.bb}|  4 ++--
>  2 files changed, 6 insertions(+), 10 deletions(-)
>  rename meta/recipes-devtools/strace/{strace_4.12.bb => strace_4.13.bb} (91%)
>
> diff --git a/meta/recipes-devtools/strace/strace/Makefile-ptest.patch 
> b/meta/recipes-devtools/strace/strace/Makefile-ptest.patch
> index 824031e..2b76e8a 100644
> --- a/meta/recipes-devtools/strace/strace/Makefile-ptest.patch
> +++ b/meta/recipes-devtools/strace/strace/Makefile-ptest.patch
> @@ -10,23 +10,22 @@ Signed-off-by: Chong Lu 
>   2 files changed, 19 insertions(+), 1 deletion(-)
>
>  diff --git a/configure.ac b/configure.ac
> -index 0209bac..b969e25 100644
>  --- a/configure.ac
>  +++ b/configure.ac
>  @@ -36,7 +36,7 @@ AC_INIT([strace],
>   AC_CONFIG_SRCDIR([strace.c])
>   AC_CONFIG_AUX_DIR([.])
>   AC_CONFIG_HEADERS([config.h])
> --AM_INIT_AUTOMAKE([foreign nostdinc dist-xz no-dist-gzip silent-rules 
> parallel-tests])
> -+AM_INIT_AUTOMAKE([foreign nostdinc dist-xz no-dist-gzip silent-rules 
> serial-tests])
> +-AM_INIT_AUTOMAKE([foreign nostdinc dist-xz silent-rules parallel-tests])
> ++AM_INIT_AUTOMAKE([foreign nostdinc dist-xz silent-rules serial-tests])
>   AM_MAINTAINER_MODE
>   AC_CANONICAL_HOST
>
>  diff --git a/tests/Makefile.am b/tests/Makefile.am
> -index 0f23b4b..429f7e9 100644
> +index 9023029..e1917fa 100644
>  --- a/tests/Makefile.am
>  +++ b/tests/Makefile.am
> -@@ -332,3 +332,21 @@ ksysent.h: $(srcdir)/ksysent.sed
> +@@ -784,3 +784,21 @@ ksysent.h: $(srcdir)/ksysent.sed
>
>   BUILT_SOURCES = ksysent.h
>   CLEANFILES = ksysent.h $(TESTS:=.tmp)
> @@ -48,6 +47,3 @@ index 0f23b4b..429f7e9 100644
>  +  sed -i -e 's/$${srcdir=.}/./g' $(DESTDIR)/$(TESTDIR)/$$file; \
>  +  done
>  +  for i in net net-fd scm_rights-fd sigaction; do sed -i -e 
> 's/$$srcdir/./g' $(DESTDIR)/$(TESTDIR)/$$i.test; done
> ---
> -1.9.1
> -
> diff --git a/meta/recipes-devtools/strace/strace_4.12.bb 
> b/meta/recipes-devtools/strace/strace_4.13.bb
> similarity index 91%
> rename from meta/recipes-devtools/strace/strace_4.12.bb
> rename to meta/recipes-devtools/strace/strace_4.13.bb
> index 70d7402..1a576b3 100644
> --- a/meta/recipes-devtools/strace/strace_4.12.bb
> +++ b/meta/recipes-devtools/strace/strace_4.13.bb
> @@ -14,8 +14,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/strace/strace-${PV}.tar.xz 
> \
> 
> file://0001-Fix-build-when-using-non-glibc-libc-implementation-o.patch \
> "
>
> -SRC_URI[md5sum] = "efb8611fc332e71ec419c53f59faa93e"
> -SRC_URI[sha256sum] = 
> "51144b78cb9ba22211b95a5aafe0af3694c0d575b25975d80ca9dd4dfd7c1e59"
> +SRC_URI[md5sum] = "4b78c7febdd24c79d5147824d1a080a3"
> +SRC_URI[sha256sum] = 
> "d48f732576c91ece36a5843d63f9be054c40ef59f1e4773986042636861625d7"
>
>  inherit autotools ptest bluetooth
>
> --
> 2.9.0
>
> --
> ___
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [RFT] binutils 2.27

2016-08-07 Thread Khem Raj
Hi All

I have put together upgrade for binutils 2.27 here ( kraj/master branch )

https://github.com/kraj/openembedded-core/commit/b98f5761d2285ffd773ec6ecb901b799302ebd6b

I have started bunch of test builds. but I would appreciate any help in testing 
it out in your
environments and report any issues you see.

Thanks

-Khem



signature.asc
Description: Message signed with OpenPGP using GPGMail
-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [krogoth][jethro][PATCH] meta/classes: fix bb.build.FuncFailed typos

2016-08-07 Thread Jonathan Liu
Signed-off-by: Jonathan Liu 
---
 meta/classes/grub-efi.bbclass  | 2 +-
 meta/classes/gummiboot.bbclass | 4 ++--
 meta/classes/syslinux.bbclass  | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta/classes/grub-efi.bbclass b/meta/classes/grub-efi.bbclass
index 4ce3d28..ec86627 100644
--- a/meta/classes/grub-efi.bbclass
+++ b/meta/classes/grub-efi.bbclass
@@ -93,7 +93,7 @@ python build_efi_cfg() {
 try:
  cfgfile = file(cfile, 'w')
 except OSError:
-raise bb.build.funcFailed('Unable to open %s' % (cfile))
+raise bb.build.FuncFailed('Unable to open %s' % (cfile))
 
 cfgfile.write('# Automatically created by OE\n')
 
diff --git a/meta/classes/gummiboot.bbclass b/meta/classes/gummiboot.bbclass
index 1ebb946..96d1301 100644
--- a/meta/classes/gummiboot.bbclass
+++ b/meta/classes/gummiboot.bbclass
@@ -72,7 +72,7 @@ python build_efi_cfg() {
 try:
  cfgfile = open(cfile, 'w')
 except OSError:
-raise bb.build.funcFailed('Unable to open %s' % (cfile))
+raise bb.build.FuncFailed('Unable to open %s' % (cfile))
 
 cfgfile.write('# Automatically created by OE\n')
 cfgfile.write('default %s\n' % (labels.split()[0]))
@@ -95,7 +95,7 @@ python build_efi_cfg() {
 try:
 entrycfg = open(entryfile, "w")
 except OSError:
-raise bb.build.funcFailed('Unable to open %s' % (entryfile))
+raise bb.build.FuncFailed('Unable to open %s' % (entryfile))
 localdata.setVar('OVERRIDES', label + ':' + overrides)
 bb.data.update_data(localdata)
 
diff --git a/meta/classes/syslinux.bbclass b/meta/classes/syslinux.bbclass
index 52fb51f..8609cab 100644
--- a/meta/classes/syslinux.bbclass
+++ b/meta/classes/syslinux.bbclass
@@ -105,7 +105,7 @@ python build_syslinux_cfg () {
 try:
 cfgfile = file(cfile, 'w')
 except OSError:
-raise bb.build.funcFailed('Unable to open %s' % (cfile))
+raise bb.build.FuncFailed('Unable to open %s' % (cfile))
 
 cfgfile.write('# Automatically created by OE\n')
 
-- 
2.9.2

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] [PATCH] meta/classes: fix bb.build.FuncFailed typos

2016-08-07 Thread Jonathan Liu
Signed-off-by: Jonathan Liu 
---
 meta/classes/grub-efi.bbclass | 2 +-
 meta/classes/gummiboot.bbclass| 4 ++--
 meta/classes/syslinux.bbclass | 2 +-
 meta/classes/systemd-boot.bbclass | 4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/meta/classes/grub-efi.bbclass b/meta/classes/grub-efi.bbclass
index b8c20dd..ae8ee38 100644
--- a/meta/classes/grub-efi.bbclass
+++ b/meta/classes/grub-efi.bbclass
@@ -95,7 +95,7 @@ python build_efi_cfg() {
 try:
  cfgfile = open(cfile, 'w')
 except OSError:
-raise bb.build.funcFailed('Unable to open %s' % (cfile))
+raise bb.build.FuncFailed('Unable to open %s' % (cfile))
 
 cfgfile.write('# Automatically created by OE\n')
 
diff --git a/meta/classes/gummiboot.bbclass b/meta/classes/gummiboot.bbclass
index 14fa4cf..e6eba17 100644
--- a/meta/classes/gummiboot.bbclass
+++ b/meta/classes/gummiboot.bbclass
@@ -74,7 +74,7 @@ python build_efi_cfg() {
 try:
  cfgfile = open(cfile, 'w')
 except OSError:
-raise bb.build.funcFailed('Unable to open %s' % (cfile))
+raise bb.build.FuncFailed('Unable to open %s' % (cfile))
 
 cfgfile.write('# Automatically created by OE\n')
 cfgfile.write('default %s\n' % (labels.split()[0]))
@@ -97,7 +97,7 @@ python build_efi_cfg() {
 try:
 entrycfg = open(entryfile, "w")
 except OSError:
-raise bb.build.funcFailed('Unable to open %s' % (entryfile))
+raise bb.build.FuncFailed('Unable to open %s' % (entryfile))
 localdata.setVar('OVERRIDES', label + ':' + overrides)
 bb.data.update_data(localdata)
 
diff --git a/meta/classes/syslinux.bbclass b/meta/classes/syslinux.bbclass
index 1d310dd..fa3e3ec 100644
--- a/meta/classes/syslinux.bbclass
+++ b/meta/classes/syslinux.bbclass
@@ -105,7 +105,7 @@ python build_syslinux_cfg () {
 try:
 cfgfile = open(cfile, 'w')
 except OSError:
-raise bb.build.funcFailed('Unable to open %s' % (cfile))
+raise bb.build.FuncFailed('Unable to open %s' % (cfile))
 
 cfgfile.write('# Automatically created by OE\n')
 
diff --git a/meta/classes/systemd-boot.bbclass 
b/meta/classes/systemd-boot.bbclass
index 9e9398a..b550b61 100644
--- a/meta/classes/systemd-boot.bbclass
+++ b/meta/classes/systemd-boot.bbclass
@@ -77,7 +77,7 @@ python build_efi_cfg() {
 try:
  cfgfile = open(cfile, 'w')
 except OSError:
-raise bb.build.funcFailed('Unable to open %s' % (cfile))
+raise bb.build.FuncFailed('Unable to open %s' % (cfile))
 
 cfgfile.write('# Automatically created by OE\n')
 cfgfile.write('default %s\n' % (labels.split()[0]))
@@ -100,7 +100,7 @@ python build_efi_cfg() {
 try:
 entrycfg = open(entryfile, "w")
 except OSError:
-raise bb.build.funcFailed('Unable to open %s' % (entryfile))
+raise bb.build.FuncFailed('Unable to open %s' % (entryfile))
 localdata.setVar('OVERRIDES', label + ':' + overrides)
 bb.data.update_data(localdata)
 
-- 
2.9.2

-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core