Re: [OE-core] [PATCH 1/2] busybox-mdev: Support automatic mounting of block devices

2014-12-17 Thread Mike Looijmans
On 12/17/2014 11:08 PM, Gary Thomas wrote: On 2014-12-17 15:03, Burton, Ross wrote: Hi Mike, On 5 December 2014 at 09:58, Mike Looijmans mailto:mike.looijm...@topic.nl>> wrote: Upon inserting a USB stick or similar device, mdev will run an automounter script that mounts valid partitio

Re: [OE-core] [PATCH 1/2] busybox-mdev: Support automatic mounting of block devices

2014-12-17 Thread Mike Looijmans
On 12/17/2014 11:03 PM, Burton, Ross wrote: Hi Mike, On 5 December 2014 at 09:58, Mike Looijmans mailto:mike.looijm...@topic.nl>> wrote: Upon inserting a USB stick or similar device, mdev will run an automounter script that mounts valid partitions on /media/. The script first check

Re: [OE-core] [PATCH 1/1] dhcp: fix for systemd service file

2014-12-17 Thread ChenQi
On 12/17/2014 06:21 PM, Enrico Scholz wrote: ChenQi writes: 1. Set Type=forking for dhcpd.service to make it start up correctly. 2. Add PIDFile=/var/run/dhcpd.pid why forking? Starting dhcpd with '-f --no-pid' should chose the more simple non-forking variant without a clumsy.pidfile. Enrico

[OE-core] [PATCH V2 0/1] dhcp: fix for systemd service file

2014-12-17 Thread Chen Qi
The following changes since commit e6c6d3fcfd2faf867e8145d25c1ba197fb9ee6b5: build-appliance-image: Update to dizzy head revision (2014-09-23 22:10:21 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/systemd-dhcpd http://git.pokylinux.org/cgit.cgi

[OE-core] [PATCH V2 1/1] dhcp: fix for systemd service file

2014-12-17 Thread Chen Qi
1. Add '-f --no-pid' option to make dhcpd start correctly 2. Do not force existence of the environment file. Signed-off-by: Chen Qi --- meta/recipes-connectivity/dhcp/files/dhcpd.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-connectivity/dhcp/files/

[OE-core] [PATCH v2] file: upgrade to 5.21

2014-12-17 Thread Li xin
file 5.21 fix CVE-2014-8116 and CVE-2014-8117. Signed-off-by: Li Xin --- .../file/file/debian-742262-backport.patch | 32 .../recipes-devtools/file/file/debian-742262.patch | 19 meta/recipes-devtools/file/file_5.18.bb| 35 ---

[OE-core] [PATCH] file: upgrade to 5.21

2014-12-17 Thread Li xin
file 5.21 fix CVE-2014-8116 and CVE-2014-8117. Signed-off-by: Li Xin --- .../file/file/debian-742262-backport.patch | 32 .../recipes-devtools/file/file/debian-742262.patch | 19 meta/recipes-devtools/file/file_5.18.bb| 35 ---

[OE-core] [PATCH] Upgrade qemu to version 2.2.0

2014-12-17 Thread Kai Kang
Hi Ross, This upgrade includes the signle step support for aarch64, so I'll drop the patch which add the single step support in the qemuarm64 serial commits. Kai Kang (1): qemu: upgrade to 2.2.0 .../files/Qemu-Arm-versatilepb-Add-memory-size-checking.patch | 10 +++--- meta/recipes-devto

[OE-core] [PATCH] qemu: upgrade to 2.2.0

2014-12-17 Thread Kai Kang
Upgrade qemu from version 2.1.2 to 2.2.0. Update Qemu-Arm-versatilepb-Add-memory-size-checking.patch for new version qemu. Signed-off-by: Kai Kang --- .../files/Qemu-Arm-versatilepb-Add-memory-size-checking.patch | 10 +++--- meta/recipes-devtools/qemu/{qemu_2.1.2.bb => qemu_2.2.0.bb}|

Re: [OE-core] [PATCH 09/24] libpng: add neon option for aarch64

2014-12-17 Thread Kang Kai
On 2014年12月17日 19:04, Burton, Ross wrote: I find Koen's patch for libpng neater so could you merge that into your qemuarm64 branch? The autobuilder has been doing some builds so this should be the last stage before it's all merged. OK. I'll do it. --Kai Ross On 17 December 2014 at 08:47,

[OE-core] [PATCH] terminal: Disable shopt errexit

2014-12-17 Thread Richard Tollerton
`sh -e` causes any errors encountered during shell execution to abort the shell. For terminal sessions like devshell, this causes errors encountered while executing do_terminal to instantaneously kill the session. This is explicitly not what we want for interactive/debugging situations like with te

[OE-core] [PATCH] glibc-testing: explicitly specify system headers location for g++

2014-12-17 Thread Juro Bystricky
The following glibc test programs fail to build when compiled using g++: /elf/tst-unique3cc /elf/tst-unique4cc /elf/tst-unique3lib.cc /elf/tst-unique3lib2.cc The build fails because g++ system include files were not found. g++ is invoked with -nostdinc option, so location of system include

[OE-core] [PATCH 3/3] xorg-font-common: fix sysroot injection for encoding maps

2014-12-17 Thread Richard Tollerton
The xorg font builds use `pkg-config --variable=mapdir fontutil` to locate encoding maps. This variable ought to be sysroot-relative, but neither pkg-config nor font-util nor the fonts themselves provide any facility to add the sysroot back in. We're presently adding the sysroot by by twiddling MA

[OE-core] [PATCH 0/3] xorg-font: stop trying to use build machine's encoding maps

2014-12-17 Thread Richard Tollerton
Several xorg-font builds were added to meta-oe recently. These builds tend to fail on several Linux distros because they referenced encoding maps (e.g. map-ISO8859-1) at native paths outside the sysroot, which don't exist; the build expects /usr/share/fonts/X11/util/map-ISO8859-1 to exist, but the

[OE-core] [PATCH 1/3] staging.bbclass: Install ${datadir}/fonts/ into sysroots

2014-12-17 Thread Richard Tollerton
font-util installs encoding maps into /usr/share/fonts/X11. This path may not exist on the host (many distros install these into /usr/share/fonts/util) so they must exist in the sysroot in order for e.g. `pkg-config --variable=mapdir fontutil` to work correctly. However, currently /usr/share/fonts

[OE-core] [PATCH 2/3] font-util: remove MAPFILES_PATH override

2014-12-17 Thread Richard Tollerton
MAPFILES_PATH is a configuration variable that is used by packages using font-util, which tells those packages how to compute it in fontutil.m4. Presently, we're manually twiddling things so that MAPFILES_PATH will consult the native sysroot, when building under *any* architecture. This complicates

Re: [OE-core] [PATCH] font-util: Fix incorrect PKG_CONFIG_PATH

2014-12-17 Thread Richard Tollerton
Richard Tollerton writes: > PKG_CONFIG_PATH always defaults to /usr/lib/pkgconfig, and the host > /usr/lib/pkgconfig is always checked as a fallback; however, > PKG_CONFIG_PATH is currently (incorrectly) set to /usr/lib/pkg-config in > the sysroot, which doesn't exist. On host distros where the f

Re: [OE-core] [PATCH 1/2] busybox-mdev: Support automatic mounting of block devices

2014-12-17 Thread Gary Thomas
On 2014-12-17 15:03, Burton, Ross wrote: Hi Mike, On 5 December 2014 at 09:58, Mike Looijmans mailto:mike.looijm...@topic.nl>> wrote: Upon inserting a USB stick or similar device, mdev will run an automounter script that mounts valid partitions on /media/. The script first checks /e

Re: [OE-core] [PATCH 1/2] busybox-mdev: Support automatic mounting of block devices

2014-12-17 Thread Burton, Ross
On 17 December 2014 at 22:03, Burton, Ross wrote: > > Thanks for this, but can this script be put into a separate recipe to make > it even easier for people who don't want it, or want their own version? > The prior art here is the udev automounting script which is in > udev-extraconf. That embar

Re: [OE-core] [PATCH 1/2] busybox-mdev: Support automatic mounting of block devices

2014-12-17 Thread Burton, Ross
Hi Mike, On 5 December 2014 at 09:58, Mike Looijmans wrote: > > Upon inserting a USB stick or similar device, mdev will run > an automounter script that mounts valid partitions on > /media/. The script first checks /etc/fstab entries > so that mounting on UUID or LABEL or using custom mount optio

Re: [OE-core] [PATCH 1/2] busybox-mdev: Support automatic mounting of block devices

2014-12-17 Thread Burton, Ross
On 5 December 2014 at 09:58, Mike Looijmans wrote: > > The automatic mounting can be disabled by adding a line > MDEV_AUTOMOUNT=y > into /etc/default/mdev > Presumably you meant =n there, right? Ross -- ___ Openembedded-core mailing list Openembedded-

[OE-core] [PATCH] vala: Add Upstream-Status to patch

2014-12-17 Thread Saul Wold
Signed-off-by: Saul Wold --- .../0001-git-version-gen-don-t-append-dirty-if-we-re-not-in-g.patch | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/vala/vala/0001-git-version-gen-don-t-append-dirty-if-we-re-not-in-g.patch b/meta/recipes-devtools/vala/vala/0001-git-

[OE-core] [PATCH 1/2] which: add missing Upstream-Status

2014-12-17 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/recipes-extended/which/which-2.20/automake.patch |5 + 1 file changed, 5 insertions(+) diff --git a/meta/recipes-extended/which/which-2.20/automake.patch b/meta/recipes-extended/which/which-2.20/automake.patch index 92365dd..ef00bc9 100644 --- a/meta/

[OE-core] [PATCH 2/2] oprofile: add missing Upstream-Status

2014-12-17 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/recipes-kernel/oprofile/oprofile/automake-foreign.patch |5 + 1 file changed, 5 insertions(+) diff --git a/meta/recipes-kernel/oprofile/oprofile/automake-foreign.patch b/meta/recipes-kernel/oprofile/oprofile/automake-foreign.patch index e82a381..b9bb6

[OE-core] [dizzy][PATCH] Fixed openssh ptest

2014-12-17 Thread Liviu Gheorghisan
ptests for openssh, apart from a lot of .sh scripts, also require 2 executables to be cross-compiled for the target and deployed there, that will be called from the test scripts. Those 2 files were not built when cross-compiling (Makefile target all:), so I added them to the build, under the targe

Re: [OE-core] [PATCH 13/24] libunwind: add aarch64 support

2014-12-17 Thread Kang Kai
On 2014年12月17日 17:23, Fathi Boudra wrote: On 17 December 2014 at 10:53, Kang Kai wrote: On 2014年12月09日 04:56, Burton, Ross wrote: On 7 November 2014 at 08:51, Kai Kang wrote: - Support-building-with-older-compilers (fix undefined reference to `unreachable' on older compilers) Th

Re: [OE-core] [PATCH 0/4] Import Python Modules for Toaster

2014-12-17 Thread Burton, Ross
On 10 December 2014 at 05:44, Saul Wold wrote: > > These 4 python modules are needed by toaster, since we want to have a > complete environment, we need add these python modules to oe-core so > that toaster can run. > I'm not very comfortable with pulling pieces from meta-python or meta-openstack

Re: [OE-core] [PATCH 09/24] libpng: add neon option for aarch64

2014-12-17 Thread Burton, Ross
I find Koen's patch for libpng neater so could you merge that into your qemuarm64 branch? The autobuilder has been doing some builds so this should be the last stage before it's all merged. Ross On 17 December 2014 at 08:47, Kang Kai wrote: > > On 2014年12月17日 03:30, Koen Kooi wrote: > > Op 7

Re: [OE-core] [PATCH 1/1] dhcp: fix for systemd service file

2014-12-17 Thread Enrico Scholz
ChenQi writes: >> 1. Set Type=forking for dhcpd.service to make it start up correctly. >> 2. Add PIDFile=/var/run/dhcpd.pid why forking? Starting dhcpd with '-f --no-pid' should chose the more simple non-forking variant without a clumsy.pidfile. Enrico -- _

Re: [OE-core] [PATCH 1/1] dhcp: fix for systemd service file

2014-12-17 Thread ChenQi
ping On 09/28/2014 04:59 PM, Chen Qi wrote: 1. Set Type=forking for dhcpd.service to make it start up correctly. 2. Add PIDFile=/var/run/dhcpd.pid 3. Do not force existence of the environment file. Signed-off-by: Chen Qi --- meta/recipes-connectivity/dhcp/files/dhcpd.service | 4 +++- 1 fil

Re: [OE-core] [PATCH 13/24] libunwind: add aarch64 support

2014-12-17 Thread Fathi Boudra
On 17 December 2014 at 10:53, Kang Kai wrote: > On 2014年12月09日 04:56, Burton, Ross wrote: >> >> On 7 November 2014 at 08:51, Kai Kang wrote: >> >>>- Support-building-with-older-compilers (fix undefined reference to >>> `unreachable' on older compilers) >>> >> This patch is missing a sign

Re: [OE-core] [PATCH 13/24] libunwind: add aarch64 support

2014-12-17 Thread Kang Kai
On 2014年12月09日 04:56, Burton, Ross wrote: On 7 November 2014 at 08:51, Kai Kang wrote: - Support-building-with-older-compilers (fix undefined reference to `unreachable' on older compilers) This patch is missing a signed-off-by header, and considering that oe-core has gcc 4.9 do we st

Re: [OE-core] [PATCH 16/24] packagegroup-core-tools-profile: remove sysprof for aarch64

2014-12-17 Thread Kang Kai
On 2014年12月10日 20:27, Burton, Ross wrote: On 10 December 2014 at 01:39, Kang Kai wrote: I think I misunderstood you. Do you mean update like this: SYSPROF = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'sysprof', '', d)}" SYSPROF_aarch64 = "" RRECOMMENDS_${PN} = "\ ... \ ${SY

Re: [OE-core] [PATCH 09/24] libpng: add neon option for aarch64

2014-12-17 Thread Kang Kai
On 2014年12月17日 03:30, Koen Kooi wrote: Op 7 nov. 2014, om 09:51 heeft Kai Kang het volgende geschreven: Add neon option for aarch64 just as for arm. It fails with: | ./.libs/libpng16.so: undefined reference to `png_init_filter_functions_neon' | collect2: error: ld returned 1 exit status Sign