]> code.ossystems Code Review - openembedded-core.git/log
openembedded-core.git
11 years agomkfontscale: upgrade to 1.1.1
Cristiana Voicu [Mon, 5 Aug 2013 10:51:53 +0000 (13:51 +0300)]
mkfontscale: upgrade to 1.1.1

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoed: upgrade to 1.9
Cristiana Voicu [Mon, 5 Aug 2013 11:48:58 +0000 (14:48 +0300)]
ed: upgrade to 1.9

LIC_FILES_CHKSUM changed because some lines were
in addition in main.c file. Those lines are related to exit
status.

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agosystemtap: fix build failure on host system with dyninst installed
Victor Kamensky [Thu, 8 Aug 2013 16:14:29 +0000 (09:14 -0700)]
systemtap: fix build failure on host system with dyninst installed

On host system where dyninst installed (i.e Fedora 18 with SystemTap)
builds fails with the error from do_qa_configure "This autoconf log
indicates errors, it looked at host include and/or library paths
while determining system capabilities." Problematic config.log
indicates inclusion of /usr/include/dyninst/dyntypes.h

Fix for now - disable dyninst in oe builds

Signed-off-by: Victor Kamensky <victor.kamensky@linaro.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agobusybox: remove syslog-startup.conf if sysvinit not in DISTRO_FEATURES
Chen Qi [Wed, 7 Aug 2013 08:43:40 +0000 (16:43 +0800)]
busybox: remove syslog-startup.conf if sysvinit not in DISTRO_FEATURES

sysvinit and systemd have different ideas about configuration files (or
environment files in systemd), so basically we can't use the same one in
both cases.

To avoid confusion, this patch removes syslog-startup.conf if 'sysvinit'
is not in DISTRO_FEATURES.

[YOCTO #4837]
[YOCTO #4860]

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoqemu: pass CFLAGS via ./configure instead of a patch
Riku Voipio [Tue, 6 Aug 2013 14:04:53 +0000 (17:04 +0300)]
qemu: pass CFLAGS via ./configure instead of a patch

OE carries a patch to pass CFLAGS to qemu. However, we can avoid
patching by passing CFLAGS with qemu's --extra-cflags option.

Tested that building qemu-native still works without zlib-dev
on host, and that qemu builds.

Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoseparatebuilddir: add comments
Ross Burton [Tue, 6 Aug 2013 11:23:49 +0000 (12:23 +0100)]
separatebuilddir: add comments

Add a comment explaining the libproxy failure, and note that wpa-supplicant doesn't support B!=S.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agotzdata: upgrade to 2013d
Cristiana Voicu [Mon, 5 Aug 2013 08:28:10 +0000 (11:28 +0300)]
tzdata: upgrade to 2013d

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
[sgw: Fix up tzdata to 2013d]
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogst-fluendo-mpegdemux: upgrade to v0.10.72
Cristian Iorga [Wed, 7 Aug 2013 14:53:48 +0000 (17:53 +0300)]
gst-fluendo-mpegdemux: upgrade to v0.10.72

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agonet-tools: upgrade to v1.60-25
Cristian Iorga [Wed, 7 Aug 2013 14:53:47 +0000 (17:53 +0300)]
net-tools: upgrade to v1.60-25

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agosudo: quote BUILD_CC
Kai Kang [Wed, 7 Aug 2013 09:30:13 +0000 (17:30 +0800)]
sudo: quote BUILD_CC

BUILD_CC is assigned to CC when do compile. If BUILD_CC has multi-items
such as "ccache gcc", compilation fails with:

make: *** No rule to make target `gcc'.  Stop.

Double quote BUILD_CC to avoid this error.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agobash: reference acl*.m4 from ${S}
Bian Naimeng [Wed, 7 Aug 2013 03:33:19 +0000 (11:33 +0800)]
bash: reference acl*.m4 from ${S}

bash: reference acl*.m4 from ${S}.

The build directory had been moved to ${WORKDIR}/build,
so we should reference acl*.m4 from ${S}.
Otherwise, the following configure error will be caught.

  | cat: aclocal.m4: No such file or directory
  | ERROR: Function failed: do_configure (log file is located at ...)

Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agobuildhistory: use bb.utils.mkdirhier instead of os.makedirs
Martin Jansa [Tue, 6 Aug 2013 22:09:49 +0000 (00:09 +0200)]
buildhistory: use bb.utils.mkdirhier instead of os.makedirs

* Multiple do_fetch[prefunc] can happen at the same time and
  if not os.path.exists(pkghistdir):
    os.makedirs(pkghistdir)
  isn't safe
* Use bb.utils.mkdirhier which doesn't raise error when directory exists

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agobuildhistory: use package_qa_handle_error for version-going-backwards
Martin Jansa [Tue, 6 Aug 2013 22:08:08 +0000 (00:08 +0200)]
buildhistory: use package_qa_handle_error for version-going-backwards

* this way it's easier for distro to select if such issue should be
  error, warning or ignored and also it gets recorded in qa.log

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agosubversion: Add patch to use neon 0.30
Saul Wold [Tue, 6 Aug 2013 20:55:28 +0000 (13:55 -0700)]
subversion: Add patch to use neon 0.30

The neon update is not recognized but subversion, so we need to patch the configure.ac
to know about 0.30, otherwise we don't have http/https support in subversion.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
11 years agoman-pages: upgrade to 3.53
Saul Wold [Sat, 3 Aug 2013 10:54:52 +0000 (13:54 +0300)]
man-pages: upgrade to 3.53

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoutil-linux: upgrade to 2.23.2
Saul Wold [Sat, 3 Aug 2013 10:10:40 +0000 (13:10 +0300)]
util-linux: upgrade to 2.23.2

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agomc: upgrade to 4.8.10
Saul Wold [Sat, 3 Aug 2013 08:53:27 +0000 (11:53 +0300)]
mc: upgrade to 4.8.10

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agolist-packageconfig-flags.py: add a script to list all PACKAGECONFIG flags
Hongxu Jia [Mon, 5 Aug 2013 11:42:09 +0000 (19:42 +0800)]
list-packageconfig-flags.py: add a script to list all PACKAGECONFIG flags

- This script will list available pkgs which have PACKAGECONFIG flags.
- If option '-f' is used, it will list available PACKAGECONFIG flags
  and all affected pkgs.
- If option '-a' is used, it will list all pkgs and PACKAGECONFIG
  information
- If option '-p' is used, it means list the pkgs with preferred version

EXAMPLE:
list-packageconfig-flags.py
PACKAGE NAME                               PACKAGECONFIG FLAGS
==============================================================
alsa-tools-1.0.26.1                        defaultval gtk+
avahi-ui-0.6.31                            defaultval python
bluez4-4.101                               alsa defaultval pie

list-packageconfig-flags.py -f
PACKAGECONFIG FLAG     PACKAGE NAMES
====================================
3g                     connman-1.16
avahi                  cups-1.6.3  pulseaudio-4.0
beecrypt               rpm-5.4.9  rpm-native-5.4.9

list-packageconfig-flags.py -a
==================================================
gtk+-2.24.18
/home/jiahongxu/yocto/poky/meta/recipes-gnome/gtk+/gtk+_2.24.18.bb
PACKAGECONFIG x11
PACKAGECONFIG[x11] --with-x=yes --with-gdktarget=x11,--with-x=no,${X11DEPENDS}

xf86-video-intel-2.21.9
/home/jiahongxu/yocto/poky/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.21.9.bb
PACKAGECONFIG None
PACKAGECONFIG[xvmc] --enable-xvmc,--disable-xvmc,libxvmc
PACKAGECONFIG[sna] --enable-sna,--disable-sna

[YOCTO #4368]

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agobase.bbclass: Fix PACKAGECONFIG usage comment
Otavio Salvador [Mon, 5 Aug 2013 14:02:43 +0000 (11:02 -0300)]
base.bbclass: Fix PACKAGECONFIG usage comment

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agokernel.bbclass: fix typo
Javier Viguera [Mon, 5 Aug 2013 17:08:25 +0000 (19:08 +0200)]
kernel.bbclass: fix typo

Signed-off-by: Javier Viguera <javier.viguera@digi.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agocurl: upgrade to 7.31.0
Cristiana Voicu [Mon, 5 Aug 2013 08:28:12 +0000 (11:28 +0300)]
curl: upgrade to 7.31.0

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoliburcu: upgrade to 0.7.7
Cristiana Voicu [Mon, 5 Aug 2013 08:28:11 +0000 (11:28 +0300)]
liburcu: upgrade to 0.7.7

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoqt4: add upstream QTBUG-32534 patch for QHttpMultiPart upload corruption
Jonathan Liu [Sat, 3 Aug 2013 07:56:43 +0000 (17:56 +1000)]
qt4: add upstream QTBUG-32534 patch for QHttpMultiPart upload corruption

Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agotelepathy-glib: upgrade to v0.20.4
Cristian Iorga [Mon, 5 Aug 2013 09:41:43 +0000 (12:41 +0300)]
telepathy-glib: upgrade to v0.20.4

pkgconfig.patch removed; already integrated in upstream.

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogstreamer1.0-plugins-ugly: upgrade to v1.0.9
Cristian Iorga [Mon, 5 Aug 2013 08:18:52 +0000 (11:18 +0300)]
gstreamer1.0-plugins-ugly: upgrade to v1.0.9

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoneon: upgrade to v0.30.0
Cristian Iorga [Mon, 5 Aug 2013 07:55:41 +0000 (10:55 +0300)]
neon: upgrade to v0.30.0

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agolibpng: package new tools into a libpng-tools package
Saul Wold [Sun, 4 Aug 2013 22:09:19 +0000 (15:09 -0700)]
libpng: package new tools into a libpng-tools package

These tools are useful for fixing older or corrupted
PNG files.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agotexinfo: Fix path to perl for scripts
Saul Wold [Sun, 4 Aug 2013 22:39:02 +0000 (15:39 -0700)]
texinfo: Fix path to perl for scripts

The 2 scripts texti2any and pod2tex referenced the /bin/perl directly, they
shoule be using ${USRBINPATH}/env perl.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agooeqa/utils/qemurunner: fix wrong var in message
Stefan Stanacar [Sun, 4 Aug 2013 09:15:40 +0000 (12:15 +0300)]
oeqa/utils/qemurunner: fix wrong var in message

If nothing matches we should print the text not
the match, else we get a nice traceback.

Changed in V2:
 - commit message

Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agobtrfs-tools: upgrade to upstream revision.
Yevhen Kyriukha [Sun, 4 Aug 2013 16:00:11 +0000 (19:00 +0300)]
btrfs-tools: upgrade to upstream revision.

Two patches were removed because changes that they provide are already exist.

Signed-off-by: Yevhen Kyriukha <kirgene@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agomesa: update to 9.1.6
Jonathan Liu [Sat, 3 Aug 2013 09:28:04 +0000 (19:28 +1000)]
mesa: update to 9.1.6

Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agopackagegroup-core-boot: correct runtime dependencies for non-sysvinit system
Saul Wold [Fri, 2 Aug 2013 01:40:07 +0000 (18:40 -0700)]
packagegroup-core-boot: correct runtime dependencies for non-sysvinit system

hwclock, ifup-down and modutils are all sysvinit scripts that
are available in systemd also.

[YOCTO #4969]

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogrub-efi-native: add flex patch to efi-native version also
Saul Wold [Sun, 4 Aug 2013 00:04:00 +0000 (17:04 -0700)]
grub-efi-native: add flex patch to efi-native version also

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoapt-native: fix SRC_URI Checksum for update
Saul Wold [Sat, 3 Aug 2013 13:58:25 +0000 (06:58 -0700)]
apt-native: fix SRC_URI Checksum for update

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogdk-pixbuf: upgrade to 2.28.2
Ionut Radu [Fri, 2 Aug 2013 12:37:54 +0000 (15:37 +0300)]
gdk-pixbuf: upgrade to 2.28.2

Signed-off-by: Ionut Radu <ionutx.radu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogstreamer1.0-plugins-bad: upgrade to v1.0.9
Cristian Iorga [Fri, 2 Aug 2013 15:11:05 +0000 (18:11 +0300)]
gstreamer1.0-plugins-bad: upgrade to v1.0.9

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogstreamer1.0-libav: upgrade to v1.0.9
Cristian Iorga [Fri, 2 Aug 2013 13:04:58 +0000 (16:04 +0300)]
gstreamer1.0-libav: upgrade to v1.0.9

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogstreamer1.0-plugins-good: upgrade to v1.0.9
Cristian Iorga [Thu, 1 Aug 2013 13:56:53 +0000 (16:56 +0300)]
gstreamer1.0-plugins-good: upgrade to v1.0.9

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogstreamer1.0-plugins-base: upgrade to v1.0.9
Cristian Iorga [Thu, 1 Aug 2013 11:23:55 +0000 (14:23 +0300)]
gstreamer1.0-plugins-base: upgrade to v1.0.9

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogstreamer1.0: upgrade to v1.0.9
Cristian Iorga [Thu, 1 Aug 2013 10:40:02 +0000 (13:40 +0300)]
gstreamer1.0: upgrade to v1.0.9

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agotelepathy-idle: upgrade to v0.1.16
Cristian Iorga [Thu, 1 Aug 2013 08:45:25 +0000 (11:45 +0300)]
telepathy-idle: upgrade to v0.1.16

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agotelepathy-mission-control: upgrade to v5.15.0
Cristian Iorga [Thu, 1 Aug 2013 08:04:06 +0000 (11:04 +0300)]
telepathy-mission-control: upgrade to v5.15.0

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agolibc-package.bbclass: Add armeb architecture to locale_arch_options
Fathi Boudra [Fri, 2 Aug 2013 09:08:20 +0000 (12:08 +0300)]
libc-package.bbclass: Add armeb architecture to locale_arch_options

Fix gconv build failure on ARM big-endian architecture:
ERROR: locale_arch_options not found for target_arch=armeb
ERROR: Function failed: unknown arch:armeb for locale_arch_options

Signed-off-by: Victor Kamensky <victor.kamensky@linaro.org>
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agobuildhistory: add a note when committing to buildhistory
Ross Burton [Fri, 2 Aug 2013 12:15:07 +0000 (13:15 +0100)]
buildhistory: add a note when committing to buildhistory

If there's been a lot of changes the commit to buildhistory can take a
significant amount of time, so print a note so there's some indication of
progress.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agobuildtools-tarball: do not export OECORE_NATIVE_SYSROOT
Chen Qi [Fri, 2 Aug 2013 03:37:08 +0000 (11:37 +0800)]
buildtools-tarball: do not export OECORE_NATIVE_SYSROOT

When building a qemu image inside the environment created by the
buildtools-tarball, the qemu image cannot be started, as the runqemu
script uses the tunctl binary which cannot be found inside the sysroot
directory of the buildtools-tarball.

The buildtools-tarball is inherently a tool set instead of a fully
functional SDK, so leaving the OECORE_NATIVE_SYSROOT variable in the
environment will mess things up.

However, we do need a line of 'OECORE_NATIVE_SYSROOT=xxx' in the environment
setup script so that the SDK can be extracted and relocated correctly.
Thus, instead of exporting OECORE_NATIVE_SYSROOT, we use a comment here.

[YOCTO #4939]

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoinitramfs-framework: fix bashism
Chen Qi [Fri, 2 Aug 2013 07:48:47 +0000 (15:48 +0800)]
initramfs-framework: fix bashism

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoxtscal: fix bashism
Chen Qi [Fri, 2 Aug 2013 07:47:58 +0000 (15:47 +0800)]
xtscal: fix bashism

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoqtdemo-init: fix bashism
Chen Qi [Fri, 2 Aug 2013 07:46:49 +0000 (15:46 +0800)]
qtdemo-init: fix bashism

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoscripts/contrib/mkefidisk.sh: fix bashism
Chen Qi [Fri, 2 Aug 2013 06:29:31 +0000 (14:29 +0800)]
scripts/contrib/mkefidisk.sh: fix bashism

Remove the function keyword.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogrep: Add patch for texinfo 5.1
Saul Wold [Fri, 2 Aug 2013 01:30:59 +0000 (18:30 -0700)]
grep: Add patch for texinfo 5.1

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogcc-4.8: Fix meta-fsl-arm iperf build issue
Khem Raj [Thu, 1 Aug 2013 22:07:55 +0000 (15:07 -0700)]
gcc-4.8: Fix meta-fsl-arm iperf build issue

This should fix the problem seen where gcc ICE
was happening when compiling iperf with older 2.6.x
kernel

Test this patch by reverting below commit in meta-fsl-arm

commit daf582c93a7283fb0af3b25fe2ada48f4c9985c4
Author: Otavio Salvador <otavio@ossystems.com.br>
Date:   Tue Jul 2 11:52:51 2013 -0300

    perf: Disable FPU tune for i.MX5 SoCs to workaround GCC ICE

Signed-off-by: Khem Raj <raj.khem@gmail.com>
CC: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoofono: Enable test scripts by default
Jukka Rissanen [Thu, 1 Aug 2013 15:01:39 +0000 (18:01 +0300)]
ofono: Enable test scripts by default

oFono test scripts are very useful so enable those by default.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoofono: Move bluetooth enabling to .inc file
Jukka Rissanen [Thu, 1 Aug 2013 15:01:38 +0000 (18:01 +0300)]
ofono: Move bluetooth enabling to .inc file

Moving the bluetooth enabling to ofono.inc from .bb file as
it makes more sense to have bluetooth always checked.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoofono: Add systemd support
Jukka Rissanen [Thu, 1 Aug 2013 15:01:37 +0000 (18:01 +0300)]
ofono: Add systemd support

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogrub: disable floating ncurses dependency for GPLv2 version
Paul Eggleton [Thu, 1 Aug 2013 17:17:59 +0000 (18:17 +0100)]
grub: disable floating ncurses dependency for GPLv2 version

A dependency was being added on ncurses conditionally upon whether it
had been built first. Explicitly disable this dependency to stop this
from happening.

Note that grub 2.x does not need this same fix because there ncurses is only
used when building grub-emu, which is only built when the specified
target platform is "emu" which we do not use.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoclasses/sanity: fix some grammatical errors in messages
Paul Eggleton [Thu, 1 Aug 2013 17:17:17 +0000 (18:17 +0100)]
classes/sanity: fix some grammatical errors in messages

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoclasses/sanity: check for suid root command evility
Paul Eggleton [Thu, 1 Aug 2013 17:17:16 +0000 (18:17 +0100)]
classes/sanity: check for suid root command evility

Some users have been found to have an unnamed third-party piece of
software installed which sets chmod, chown and mknod as suid root as
part of its installation process. This interferes with the operation of
pseudo and can result in files really being owned by root within the
build output, and therefore breaks the build, apart from being a
security issue. Check for this and bail out if it is found.

Reported-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agomesa: inherit gettext
Martin Jansa [Thu, 1 Aug 2013 16:26:17 +0000 (18:26 +0200)]
mesa: inherit gettext

* build in clean tmpdir fails with:
  | make[6]: Entering directory `/OE/mesa/2_9.1.3-r9.0/git/src/mesa/drivers/dri/common/xmlpool'
  | Updating (de) de/LC_MESSAGES/options.mo from de.po.
  | Updating (es) es/LC_MESSAGES/options.mo from es.po.
  | Updating (nl) nl/LC_MESSAGES/options.mo from nl.po.
  | Updating (fr) fr/LC_MESSAGES/options.mo from fr.po.
  | /bin/bash: line 4: msgfmt: command not found
  | make[6]: *** [de/LC_MESSAGES/options.mo] Error 127
  | Updating (sv) sv/LC_MESSAGES/options.mo from sv.po.
  | make[6]: *** Waiting for unfinished jobs....
  | /bin/bash: line 4: msgfmt: command not found
  | make[6]: *** [es/LC_MESSAGES/options.mo] Error 127
  | /bin/bash: line 4: msgfmt: command not found
  | make[6]: *** [nl/LC_MESSAGES/options.mo] Error 127
  | /bin/bash: line 4: msgfmt: command not found
  | /bin/bash: line 4: msgfmt: command not found
  | make[6]: *** [fr/LC_MESSAGES/options.mo] Error 127
  | make[6]: *** [sv/LC_MESSAGES/options.mo] Error 127
  | make[6]: Leaving directory `/OE/mesa/2_9.1.3-r9.0/git/src/mesa/drivers/dri/common/xmlpool'

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agooe-find-native-sysroot: minor optimization
Joe MacDonald [Thu, 1 Aug 2013 14:29:19 +0000 (10:29 -0400)]
oe-find-native-sysroot: minor optimization

The middle 'cut' in OECORE_NATIVE_SYSROOT isn't doing anything useful, so
remove it from the pipeline.

Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agopackagegroup-core-tools-testapps: isolate x11 dependent tools
Rogerio Nunes [Wed, 31 Jul 2013 21:15:15 +0000 (17:15 -0400)]
packagegroup-core-tools-testapps: isolate x11 dependent tools

This patch groups x11 dependent tools in a separete variable,
and when DISTRO_FEATURES does not contain x11, this group is
not included in the package RDEPENDS.

Signed-off-by: Rogerio Nunes <rogerio.nunes@freescale.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agou-boot: state the MACHINE when skipping u-boot
Ross Burton [Thu, 1 Aug 2013 10:07:36 +0000 (11:07 +0100)]
u-boot: state the MACHINE when skipping u-boot

If the user accidently tries building u-boot on a machine doesn't use u-boot
(such as qemuarm) the error message doesn't make it clear why u-boot was
skipped.  To help, state the machine that was being built for again.

[ YOCTO #4945 ]

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoxorg-cf-files: upgrade to 1.0.5
Saul Wold [Mon, 29 Jul 2013 07:40:12 +0000 (10:40 +0300)]
xorg-cf-files: upgrade to 1.0.5

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoresolvconf: upgrade to 1.74
Saul Wold [Mon, 29 Jul 2013 07:24:27 +0000 (10:24 +0300)]
resolvconf: upgrade to 1.74

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agolibgcrypt: upgrade to 1.5.3
Saul Wold [Mon, 29 Jul 2013 09:08:31 +0000 (12:08 +0300)]
libgcrypt: upgrade to 1.5.3

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoglew: upgrade to 1.10.0
Saul Wold [Mon, 29 Jul 2013 07:49:53 +0000 (10:49 +0300)]
glew: upgrade to 1.10.0

rebased patches

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agodpkg: Drop INC_PR as it's unused
Saul Wold [Wed, 31 Jul 2013 18:29:01 +0000 (11:29 -0700)]
dpkg: Drop INC_PR as it's unused

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agodpkg: upgrade to 1.17.1
Saul Wold [Mon, 29 Jul 2013 08:11:09 +0000 (11:11 +0300)]
dpkg: upgrade to 1.17.1

Rebased patches and removed mips related arch triptlet patch due to being upstreamed

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoshadow: Fix build when DISTRO_FEATURES contains pam, libc-crypt
Richard Tollerton [Wed, 31 Jul 2013 18:33:10 +0000 (13:33 -0500)]
shadow: Fix build when DISTRO_FEATURES contains pam, libc-crypt

shadow falsely assumes that if --enable-libpam is set, it doesn't need to link
against libcrypt; this breaks chsh. (This same fix exists in Arch.)

Signed-off-by: Richard Tollerton <rich.tollerton@ni.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoalsa-utils: upgrade to 1.0.27.2
Cristian Iorga [Wed, 31 Jul 2013 14:49:19 +0000 (17:49 +0300)]
alsa-utils: upgrade to 1.0.27.2

obsolete_automake_macros.patch,
uclibc-exp10-replacement.patch patches removed;
included in upstream.

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoalsa-lib: upgrade to v1.0.27.2
Cristian Iorga [Wed, 31 Jul 2013 14:49:18 +0000 (17:49 +0300)]
alsa-lib: upgrade to v1.0.27.2

fix-O0-Optimize-unable-inline-function.patch,
obsolete_automake_macros.patch patches
included in upstream; removed.
unbreak_plugindir.patch not used, removed.

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoapt: Upgrade from 0.9.8.2 to 0.9.9.4
Ionut Radu [Wed, 31 Jul 2013 13:58:51 +0000 (16:58 +0300)]
apt: Upgrade from 0.9.8.2 to 0.9.9.4

makerace.patch: adapted to the new version

Signed-off-by: Ionut Radu <ionutx.radu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogrub_2.00: fix compilation when using flex 2.5.37
Laurentiu Palcu [Wed, 31 Jul 2013 11:40:36 +0000 (14:40 +0300)]
grub_2.00: fix compilation when using flex 2.5.37

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoflex: upgrade to 2.5.37
Laurentiu Palcu [Tue, 30 Jul 2013 12:25:01 +0000 (15:25 +0300)]
flex: upgrade to 2.5.37

Removed patches since they were included upstream.

Added a patch to not compile flex.pdf doc since it needs texi2dvi.

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
[sgw - Dropped PR]
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agomakedepend: upgrade to 1.0.5
Laurentiu Palcu [Tue, 30 Jul 2013 12:03:49 +0000 (15:03 +0300)]
makedepend: upgrade to 1.0.5

Removed patch since it included upstream.

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoxhost: upgrade to 1.0.6
Laurentiu Palcu [Tue, 30 Jul 2013 11:54:30 +0000 (14:54 +0300)]
xhost: upgrade to 1.0.6

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoxf86-input-evdev: upgrade to 2.8.1
Laurentiu Palcu [Tue, 30 Jul 2013 10:17:15 +0000 (13:17 +0300)]
xf86-input-evdev: upgrade to 2.8.1

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoxrandr: upgrade to 1.4.1
Laurentiu Palcu [Tue, 30 Jul 2013 10:09:43 +0000 (13:09 +0300)]
xrandr: upgrade to 1.4.1

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agolibpciaccess: upgrade to 0.13.2
Laurentiu Palcu [Tue, 30 Jul 2013 09:13:37 +0000 (12:13 +0300)]
libpciaccess: upgrade to 0.13.2

Licence MD5 changed because some years were updated and some new people
added their own copyright text which, apparently, is similar with what
already exists in the file.

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agolibdrm: upgrade to 2.4.46
Laurentiu Palcu [Tue, 30 Jul 2013 09:06:32 +0000 (12:06 +0300)]
libdrm: upgrade to 2.4.46

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agopowertop: upgrade to 2.4
Laurentiu Palcu [Tue, 30 Jul 2013 08:51:37 +0000 (11:51 +0300)]
powertop: upgrade to 2.4

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agonasm: upgrade to 2.10.09
Laurentiu Palcu [Tue, 30 Jul 2013 08:40:16 +0000 (11:40 +0300)]
nasm: upgrade to 2.10.09

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogit: upgrade to 1.8.3.4
Laurentiu Palcu [Tue, 30 Jul 2013 08:38:19 +0000 (11:38 +0300)]
git: upgrade to 1.8.3.4

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoxf86-video-intel: upgrade to 2.21.13
Laurentiu Palcu [Tue, 30 Jul 2013 08:36:32 +0000 (11:36 +0300)]
xf86-video-intel: upgrade to 2.21.13

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agogst-plugins-gl: add explicit dependency on libpng
Eric Nelson [Tue, 30 Jul 2013 21:01:07 +0000 (14:01 -0700)]
gst-plugins-gl: add explicit dependency on libpng

Signed-off-by: Eric Nelson <eric.nelson@boundarydevices.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoopkg: Bump SRCREV as patch has been applied upstream
Paul Barker [Mon, 29 Jul 2013 07:28:32 +0000 (08:28 +0100)]
opkg: Bump SRCREV as patch has been applied upstream

The previous patch to fix the installation of libopkg headers has been accepted
upstream and is the next commit after the SRCREV used by the opkg recipe.
Therefore the patch can be replaced by a simple update of the SRCREV.

Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoqemu: remove unused SDL variable
Ross Burton [Mon, 29 Jul 2013 15:42:23 +0000 (16:42 +0100)]
qemu: remove unused SDL variable

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agobluez5: Add obex-profiles as a PACKAGECONFIG, package obexd separately
Ross Burton [Tue, 30 Jul 2013 13:48:34 +0000 (14:48 +0100)]
bluez5: Add obex-profiles as a PACKAGECONFIG, package obexd separately

--enable-obex controls if obexd supports extra profiles (currently IRMC and
PBAB), which brings in a dependency on libical for the dummy phonebook
implementation.

Based on work by Saul Wold <sgw@linux.intel.com>.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoavahi: Remove unnecessary runtime dependency on sysvinit-pidof
Muhammad Shakeel [Thu, 25 Jul 2013 10:02:04 +0000 (15:02 +0500)]
avahi: Remove unnecessary runtime dependency on sysvinit-pidof

'pidof' is alternatively coming from busybox so no need for avahi to explicitly
rdepend on sysvinit-pidof. This unnecessarily includes sysvinit in systemd only
build.

Signed-off-by: Muhammad Shakeel <muhammad_shakeel@mentor.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoopkg.inc: remove the obsolete REDIRECT_CMD
Chen Qi [Tue, 30 Jul 2013 02:20:09 +0000 (10:20 +0800)]
opkg.inc: remove the obsolete REDIRECT_CMD

The REDIRECT_CMD variable is now obsolete, remove it.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoadt_installer: allow specifying relative target sysroot paths
Laurentiu Palcu [Tue, 30 Jul 2013 14:40:48 +0000 (17:40 +0300)]
adt_installer: allow specifying relative target sysroot paths

If one specifies a relative target sysroot path, then he/she must always
be in the same directory in order to be able to compile.

With this patch, adt_installer will automatically convert user
supplied relative paths to absolute.

[YOCTO #4955]

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agooeqa/runtime/xorg: use the right ps command for xorg test
Stefan Stanacar [Tue, 30 Jul 2013 07:46:04 +0000 (10:46 +0300)]
oeqa/runtime/xorg: use the right ps command for xorg test

Use our determined ps command, otherwise test fails for images with procps.

Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agooeqa/utils/qemurunner: tweak console bootparam and ip command
Stefan Stanacar [Mon, 29 Jul 2013 23:00:01 +0000 (02:00 +0300)]
oeqa/utils/qemurunner: tweak console bootparam and ip command

Sync serial baud rate with default inittab which should
help with apparent boot fails. Also keep a console on tty1.

Also we shouldn't assume eth0 it the right interface.
(systemd images can rename interfaces to something else).

Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agooeqa/utils/qemurunner: add comment and header
Stefan Stanacar [Mon, 29 Jul 2013 21:45:53 +0000 (00:45 +0300)]
oeqa/utils/qemurunner: add comment and header

One of the files was missing comment/header, unlike the others.

Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agooeqa/utils/sshcontrol: increase and log timeout in output
Stefan Stanacar [Wed, 24 Jul 2013 08:43:18 +0000 (11:43 +0300)]
oeqa/utils/sshcontrol: increase and log timeout in output

Increase a bit the timeout for ssh commands and also
write in the output that the command timed out (it's
easier to see that in a test fail than checking the ssh log)

Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agotexinfo: Update to 5.1
Saul Wold [Mon, 29 Jul 2013 22:02:34 +0000 (15:02 -0700)]
texinfo: Update to 5.1

- COPYING was slightly reformated (whitespace changes only)
- rebased patches
- remove upstreamed patches
- added pod2texi to texinfo package
- get all man pages from man1 and man5

Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agomatchbox-wm: correct the SRC_URI and add checksums
Jackie Huang [Wed, 10 Jul 2013 09:56:05 +0000 (05:56 -0400)]
matchbox-wm: correct the SRC_URI and add checksums

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
[sgw - remove PR Bump]
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agodbus: remove build host test in configure script
Jackie Huang [Mon, 22 Jul 2013 07:45:41 +0000 (03:45 -0400)]
dbus: remove build host test in configure script

The dbus build tests the build host to detect what initscript
environment it expects.  Remove the test and set it to "redhat"
unconditionally as the oe-core initscript has a redhat-style pid file
path.

Signed-off-by: Andy Ross <andy.ross@windriver.com
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
11 years agobusybox: move /bin/su to /usr/bin/su to match util-linux and shadow
Hongxu Jia [Fri, 26 Jul 2013 12:09:10 +0000 (20:09 +0800)]
busybox: move /bin/su to /usr/bin/su to match util-linux and shadow

Both of util-linux and shadow have su binary in /usr/bin, fix busybox
to use the same path so they can be properly tracked by alternatives.

[YOCTO #4926]

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoshadow: use u-a for su
Hongxu Jia [Fri, 26 Jul 2013 12:09:09 +0000 (20:09 +0800)]
shadow: use u-a for su

Use alternatives mechanism to prevent confliction of attempted
installing su binary among busybox, shadow and util-linux.

[YOCTO #4926]

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
11 years agoutil-linux: use u-a for su
Hongxu Jia [Fri, 26 Jul 2013 12:09:08 +0000 (20:09 +0800)]
util-linux: use u-a for su

Use alternatives mechanism to prevent confliction of attempted
installing su binary among busybox, shadow and util-linux.

[YOCTO #4926]

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>