summaryrefslogtreecommitdiffstats
path: root/meta
Commit message (Collapse)AuthorAgeFilesLines
* libsdl: update to 1.2.15Kang Kai2012-03-143-83/+3
| | | | | | | | | | Update libsdl to 1.2.15. Patch add.XGetRequest.symbol.patch is merged by upstream, so remove it. (From OE-Core rev: 94e18a1c574b97ba87724c0fea79d2af77ba4186) Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* newt: update to 0.52.14Kang Kai2012-03-141-4/+2
| | | | | | | | | Update newt to latest verion 0.52.14. (From OE-Core rev: e28f5ca21f07040e1c62ccd65c94e2df734770e4) Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gobject-introspection: update to 1.31.20Kang Kai2012-03-141-0/+28
| | | | | | | | | | Add a new recipe file to update gobject-introspection to 1.31.20, instead of git version. (From OE-Core rev: c3c44a92e6fbc68d8beb5f805c0de16ef2f1c6cd) Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gcc-cross: aviod creating invalid symlinksRobert Yang2012-03-142-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | There are several invalid symlinks in gcc-cross-initial, gcc-cross-intermediate and gcc-cross, these cause the error:(56 errors) tmp/work/i586-poky-linux/gcc-cross-initial-4.6.3+svnr184847-r23/temp/log.do_populate_sysroot: log.do_populate_sysroot:grep: /path/to/invalid/symlink: No such file or directory Avoid creating invalid symlinks would fix this problem. Use the: [ ! -e file ] || do_something But not use: [ -e file ] && do_something is because that if the "file" doesn't exist, then the whole statement would return false, and bitbake treats this an error, so use the "||" to let it always be true. [YOCTO #2095] (From OE-Core rev: 7893e74311e53882d8f93ecb95a6bd9f5b14651e) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto-tiny: add dependency on xz-nativePaul Eggleton2012-03-141-1/+4
| | | | | | | | | | | | | The kernel configuration requires lzma to compress the kernel image (CONFIG_KERNEL_LZMA=y), so add a dependency on xz-native which provides it. Fixes [YOCTO #1728]. (From OE-Core rev: e1f656492475fb65d1203afe0afeeec7e279a317) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ncurses: fix build when ENABLE_WIDEC is not setPaul Eggleton2012-03-141-2/+3
| | | | | | | | | | | | If wide character support is disabled (as it is with poky-tiny, for example) then we won't have libncursesw.so.*, so skip moving these files in that case. (Fixes a regression introduced in OE-Core revision ccd370ab147b78de7a5bd74818f755f4d3ca6d81). (From OE-Core rev: fa15b1dfbf338969660a352deb870dfd5727bc47) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mx: add dependenciesPaul Eggleton2012-03-141-1/+1
| | | | | | | | | | | | * Add dependency on startup-notification, which is optional but without it mx applications will not send startup notifications. * Add dependencies on gdk-pixbuf and libxrandr which are usually taken care of, but are required and thus should be stated explicitly. (From OE-Core rev: 42a278ff7dc641b1700e56fbaf5a63947ff1161c) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gst-plugins-bad: disable directfb in configurePaul Eggleton2012-03-141-2/+2
| | | | | | | | | | Disable directfb output (as we do with SDL) so that it does not get auto-detected resulting in a race condition. (From OE-Core rev: a05070eb3b867f35dd8ce7e41246057589d2a26d) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pulseaudio: add X library dependenciesPaul Eggleton2012-03-142-2/+3
| | | | | | | | | | | PulseAudio requires libxtst, libice, libsm and libxcb when X11 is enabled (in our case, when x11 is in DISTRO_FEATURES), so conditionally add those to DEPENDS. (From OE-Core rev: a758df3d72942f985fe46455aa075e52100a1156) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* man: fix configure issue to solve warningsSaul Wold2012-03-141-2/+2
| | | | | | | | | | | | | | | | | | | WARNING: For recipe man, the following files/directories were installed but not shipped in any package: WARNING: /intel WARNING: /intel/poky WARNING: /intel/poky/builds WARNING: /intel/poky/builds/world WARNING: /intel/poky/builds/world/tmp WARNING: /intel/poky/builds/world/tmp/work WARNING: /intel/poky/builds/world/tmp/work/i586-poky-linux WARNING: /intel/poky/builds/world/tmp/work/i586-poky-linux/man-1.6f-r1 WARNING: /intel/poky/builds/world/tmp/work/i586-poky-linux/man-1.6f-r1/image WARNING: /intel/poky/builds/world/tmp/work/i586-poky-linux/man-1.6f-r1/image/etc WARNING: /intel/poky/builds/world/tmp/work/i586-poky-linux/man-1.6f-r1/image/etc/man.config (From OE-Core rev: d90eadccdb5a2f0fddc79dbdcec80b5f3f7908c8) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libgalago: Fix package warnings by not packaging autopackageSaul Wold2012-03-141-0/+5
| | | | | | | | | | | | | WARNING: For recipe libgalago, the following files/directories were installed but not shipped in any package: WARNING: /usr/share/autopackage WARNING: /usr/share/autopackage/skeletons WARNING: /usr/share/autopackage/skeletons/@galago.info WARNING: /usr/share/autopackage/skeletons/@galago.info/libgalago WARNING: /usr/share/autopackage/skeletons/@galago.info/libgalago/skeleton.1 (From OE-Core rev: 9f5219c681a8f6e94de255d5a6874b7f26c04888) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* man-pages: Update to 3.36Saul Wold2012-03-141-4/+4
| | | | | | | (From OE-Core rev: ca9badb601269015640fa1294b05d41cc71e04ac) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* avahi: Update to 0.6.31Saul Wold2012-03-143-10/+10
| | | | | | | | | Removed unneeded patch, because the issue was fixed upstream (From OE-Core rev: b535d953b08c54411a998e7527b4c2323720fcbf) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* distro_tracking: Updates for manual checksSaul Wold2012-03-141-7/+29
| | | | | | | (From OE-Core rev: 29fe4e2e396166ced1a8b79f7254b24e0e727db1) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python: package static libraries correctly in -staticdevSaul Wold2012-03-142-2/+6
| | | | | | | | WARNING: QA Issue: non -staticdev package contains static .a library: python-distutils path '/work/i586-poky-linux/python-2.7.2-r1.7/packages-split/python-distutils/usr/lib/python2.7/config/libpython2.7.a' (From OE-Core rev: a490aee0e41abc9fb82029fd8b64e78aa2b33a8d) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rpm: Package python-rpm static archive correctlySaul Wold2012-03-141-2/+3
| | | | | | | | WARNING: QA Issue: non -staticdev package contains static .a library: python-rpm path '/work/i586-poky-linux/rpm-5.4.0-r34/packages-split/python-rpm/usr/lib/python2.7/rpm/_rpmmodule.a' (From OE-Core rev: 1374c7a8ea7c583d428a9546999a4ec3bee06128) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* autoconf: remove emacs mode files to fix warningsSaul Wold2012-03-142-1/+5
| | | | | | | | | | | | | | WARNING: For recipe autoconf, the following files/directories were installed but not shipped in any package: WARNING: /usr/share/emacs WARNING: /usr/share/emacs/site-lisp WARNING: /usr/share/emacs/site-lisp/autotest-mode.elc WARNING: /usr/share/emacs/site-lisp/autotest-mode.el WARNING: /usr/share/emacs/site-lisp/autoconf-mode.el WARNING: /usr/share/emacs/site-lisp/autoconf-mode.elc (From OE-Core rev: abbad3e5e799c7cda5543a48d68fdd0a7a642b96) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* quilt: Fix docs packaging warningsSaul Wold2012-03-142-2/+2
| | | | | | | | | | | | | WARNING: For recipe quilt, the following files/directories were installed but not shipped in any package: WARNING: /usr/share/doc WARNING: /usr/share/doc/quilt WARNING: /usr/share/doc/quilt/README WARNING: /usr/share/doc/quilt/quilt.pdf WARNING: /usr/share/doc/quilt/README.MAIL (From OE-Core rev: b9834c7725420ea22df604edb994f6735927b2e7) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ltp: Package static library in -staticdevSaul Wold2012-03-141-0/+4
| | | | | | | | WARNING: QA Issue: non -staticdev package contains static .a library: ltp path '/work/i586-poky-linux/ltp-20120104-r0/packages-split/ltp/opt/ltp/lib/libmem.a' (From OE-Core rev: d989fddba5c086ecabe77aff7fd8c0d05a36b2a5) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* owl-video: Fix unpackaged file warningSaul Wold2012-03-141-1/+3
| | | | | | | | | | WARNING: For recipe owl-video, the following files/directories were installed but not shipped in any package: WARNING: /usr/share/video WARNING: /usr/share/video/gtk-fullscreen.png (From OE-Core rev: 1a93ad99eb4ce19b45e5f2b61902f1f2936bddff) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dates: Fix unpackaged files warningRichard Purdie2012-03-131-1/+5
| | | | | | | | | | | This directory isn't needed so remove it and resolve the warning: WARNING: For recipe dates, the following files/directories were installed but not shipped in any package: WARNING: /srv (From OE-Core rev: 81379dc141e245307ca391a02b7490b199128991) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* alsa-utils: Ensure state directory is packagedRichard Purdie2012-03-131-2/+2
| | | | | | | | | | | | | This adds the localstatedir to the alsactl package to avoid the warnings: WARNING: For recipe alsa-utils, the following files/directories were installed but not shipped in any package: WARNING: /var WARNING: /var/lib WARNING: /var/lib/alsa (From OE-Core rev: 90ea03cd92bbc2c756a5fef6dcb4f797a6dd3fab) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ppp: Clean up PACKAGES vs. variable mismatch and drop unused RDEPENDSRichard Purdie2012-03-131-10/+9
| | | | | | | | | | The RPDEPENDS format is wrong and couldn't have been doing anything useful. The mismatch between PACKAGES and the DESCRIPTION_* and FILES_* variable names could confuse the system under certain conditions so this is a good cleanup to make. (From OE-Core rev: 24f7351f6ac0408a1682893faf56b9145d698c1b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ppp: Fix unpackaged files warningsRichard Purdie2012-03-131-1/+3
| | | | | | | | | | | | This patch packages a couple of modules for ppp to resolve the warnings: WARNING: For recipe ppp, the following files/directories were installed but not shipped in any package: WARNING: /usr/lib/pppd/2.4.5/pppol2tp.so WARNING: /usr/lib/pppd/2.4.5/openl2tp.so (From OE-Core rev: 11638ba4fa9f3d76cad2b46326792884ed488ecc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxslt: Fix unpackaged directory warningRichard Purdie2012-03-131-1/+2
| | | | | | | | | | | | | Fixes the warning: WARNING: For recipe libxslt, the following files/directories were installed but not shipped in any package: WARNING: /usr/lib/libxslt-plugins It makes sense for the package to own the plugins directory. (From OE-Core rev: 9be4f5f6e0e28429b1a0c04561bfb79b54f0599d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xf86-video-vmware: Fix unpackaged driectory warningRichard Purdie2012-03-131-1/+6
| | | | | | | | | | | Fixes the warning: WARNING: For recipe xf86-video-vmware, the following files/directories were installed but not shipped in any package: WARNING: /usr/bin (From OE-Core rev: 58b2b72852389b9454dd9082ad2b22b2efbb2c19) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* matchbox-keyboard: Fix unpackaged files warningRichard Purdie2012-03-131-1/+4
| | | | | | | | | | | | Addresses the warnings: WARNING: For recipe matchbox-keyboard, the following files/directories were installed but not shipped in any package: WARNING: /usr/lib/gtk-2.0/2.10.0/immodules/libmb-im-invoker.la WARNING: /usr/lib/matchbox-panel/libkeyboard.la (From OE-Core rev: 684b25e96164eec1c69710eb9c59be8a0db4eeb2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* docbook-utils: Add check to not sed files twiceSaul Wold2012-03-131-7/+10
| | | | | | | | | | | This comes about from the code configure code getting run multiple times on the same WORKDIR and re-sed'ing already modified files. (From OE-Core rev: 22510c756aa2b1b8d46f88ec08de47674a24d5c7) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gettext: Set the LICENSE field to GPLv3+Saul Wold2012-03-131-1/+1
| | | | | | | | | | | This change is needed because currently the INCOMPATIBLE_LICENSE checking code does not map between SPDX and older style naming (GPL-3+ vs GPLv3+). Yocto bug number 2093 filed to track this. (From OE-Core rev: a5cdf764a980624dbf350cb23cd360724c059584) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* initscripts: test whether /etc/init.d/hwclock.sh existsAndreas Oberritter2012-03-132-3/+3
| | | | | | | | | | * bootmisc.sh executes /etc/init.d/hwclock.sh, which is optional (depends on CONFIG_HWCLOCK in busybox). (From OE-Core rev: 9c8300f030b69652ad39e1bc2979f5d9a03adf1e) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mtd-utils: clean up old filesJames Limbouris2012-03-135-330/+0
| | | | | | | (From OE-Core rev: d3657fbd3e6cdfa0cfd355de446b474fb2f72e81) Signed-off-by: James Limbouris <james@digitalmatter.com.au> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xinit: Update to 1.3.2 -- Typo fix.Randy MacLeod2012-03-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On 12-02-02 06:47 PM, Saul Wold wrote: > (From OE-Core rev: 04ab1fb8cc38da6c8a8b1474cf0060402f814a76) Signed-off-by: Saul Wold<sgw@linux.intel.com> > --- > .../xorg-app/{xinit_1.3.1.bb => xinit_1.3.2.bb} | 6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > rename meta/recipes-graphics/xorg-app/{xinit_1.3.1.bb => xinit_1.3.2.bb} (79%) > > diff --git a/meta/recipes-graphics/xorg-app/xinit_1.3.1.bb b/meta/recipes-graphics/xorg-app/xinit_1.3.2.bb > similarity index 79% > rename from meta/recipes-graphics/xorg-app/xinit_1.3.1.bb > rename to meta/recipes-graphics/xorg-app/xinit_1.3.2.bb > index 2ddebe6..e029a03 100644 > --- a/meta/recipes-graphics/xorg-app/xinit_1.3.1.bb > +++ b/meta/recipes-graphics/xorg-app/xinit_1.3.2.bb > @@ -10,11 +10,11 @@ then terminate." > > LIC_FILES_CHKSUM = "file://COPYING;md5=0d4b5eef75f1584ccbdc5e4a34314407" > > -PR = "r2" > +PR = "r0" > PE = "1" > > -SRC_URI[md5sum] = "ee234056d8a3dbf37b61b4bcb35b88e4" > -SRC_URI[sha256sum] = "c7468dfae94bdb42785d79623c27156dc4bf379d8372992830482cb04d8439b0" > +RC_URI[md5sum] = "9c0943cbd83e489ad1b05221b97efd44" > +SRC_URI[sha256sum] = "a1867fdaa83f68750b12ba4305c3c62f5992d0f52cfeb98e96c27a8e690e0235" > > EXTRA_OECONF = "ac_cv_path_MCOOKIE=${bindir}/mcookie" > Fix this warning: WARNING: Missing md5 SRC_URI checksum for /.../downloads/xinit-1.3.2.tar.bz2, consider adding to the recipe: SRC_URI[md5sum] = "9c0943cbd83e489ad1b05221b97efd44" $ git diff meta/recipes-graphics/xorg-app/xinit_1.3.2.bb Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Revert "gettext: do not set libncurses prefix explicitly"Richard Purdie2012-03-131-1/+2
| | | | | | | | | | This reverts commit 37b9d140b5d55af4f77baab0c0b0343d8b5e8b6c since it caused QA issues for several people. The ncurses location needs to be explicitly specificed. (From OE-Core rev: 87f02bdf4b9c0687f466de5c0bc81f510f389fc3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gettext: do not set libncurses prefix explicitlyScott Garman2012-03-131-4/+1
| | | | | | | | | | | The --with-libncurses-prefix configure option was added before this recipe had ncurses in DEPENDS, so it should be safe to remove it. (From OE-Core rev: 37b9d140b5d55af4f77baab0c0b0343d8b5e8b6c) Signed-off-by: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ncurses: move only libncurses and libtinfo to base_libdirScott Garman2012-03-131-12/+28
| | | | | | | | | | | | | | | | | | | The previous approach to moving the ncurses libraries to base_libdir was too aggressive, and it broke curses support in python. Instead, move only libncurses, libncursesw, and libtinfo to base_libdir and leave the remaining libraries in libdir. Also delete ${libdir}/terminfo as it never gets packaged to avoid a QA warning. This fixes [YOCTO #2070] and is a partial fix for [YOCTO #1937]. (From OE-Core rev: ccd370ab147b78de7a5bd74818f755f4d3ca6d81) Signed-off-by: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* path.py: add make_relative_symlink methodScott Garman2012-03-131-0/+27
| | | | | | | | | | This method allows you to convert an absolute symlink into a relative one. (From OE-Core rev: 71062c1e0fb45a4b4e58ea5d217706aa2b402d88) Signed-off-by: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python, python-native: bump PRAndreas Oberritter2012-03-131-1/+1
| | | | | | | (From OE-Core rev: cd504c7f1bd0440a114cb304f141b2b8197c7f66) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python-native: distutils: don't use libdir, remove dead code pathAndreas Oberritter2012-03-131-3/+3
| | | | | | | | | | | | | | | * Coming from OE-classic it was surprising that python-native now requires 'libdir' to be exported. Otherwise autoconf would fail to detect python libraries. This happend using a customized environment setup script to use OE's compiler and libs without bitbake. * Use STAGING_LIBDIR instead of libdir. * While at it, remove redundant 'and' statments. (From OE-Core rev: 2edc929c47ac90eabad74e3726912fb3a57aaecd) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python: depend on bzip2Andreas Oberritter2012-03-131-1/+1
| | | | | | | | | | | * Python auto-detects libbz2 and there's no way to force-disable it, so just enable it. * Adds bz2 support to python-compression. (From OE-Core rev: 744ff417fc0b4ef3096cf5f687f7e3bda20c694e) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python: regenerate plat-linux2/*.pyAndreas Oberritter2012-03-131-0/+11
| | | | | | | | | | | | | | | * If plat-linux2/DLFCN.py was present, python was broken in our image, i.e. it was unable to load many modules. This was due to changed RTLD_* constants in dlfcn.h * Python includes a script, plat-linux2/regen, to regenerate the py source codes in this directory. * Do what plat-linux2/regen would do, but use files from STAGING_INCDIR. (From OE-Core rev: 3bb9d027fff925a40c4dea9109df9464a76853b7) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python, python-native: always set platform to linux2Andreas Oberritter2012-03-135-19/+80
| | | | | | | | | | | | | | * Fixes many problems with linux2 vs. linux3. At least: - Detected version was from build-host instead of target-host. - linuxaudiodev and ossaudiodev were disabled for linux3. - Files were missing in /usr/lib/python2.7/plat-linux3. * Imported from upstream HG rev c816479f6aaf * Bugtracker URL: http://bugs.python.org/issue12326 (From OE-Core rev: accb2b728ab10cae20be59253a56ac6410b8de10) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-firmware: fix permissions of installed filesAndreas Oberritter2012-03-131-2/+2
| | | | | | | | | | | | * The previous copy command preserved the original owner and permission bits. * The new command uses root:root and applies OE's umask. (From OE-Core rev: 710e565beadcf4ea965af688fd08b9b1f274ad57) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* util-linux: explicitly disable udevAndreas Oberritter2012-03-132-2/+2
| | | | | | | | | | * util-linux auto-detects libudev for lsblk, so disable it, because it's not listed in DEPENDS. (From OE-Core rev: f831d4713a24dd56bf09276fb3b293d9c2b508cb) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* package.bbclass: sort dynamically generated packagesAndreas Oberritter2012-03-131-2/+2
| | | | | | | | | | | | | | | | * do_split_packages and package_do_split_locales dynamically add packages in order of appearance of os.walk() or os.listdir(). This order varies between multiple build hosts (and probably also between successive builds). * Sort the list of dynamically added packages, to get a consistent and reproducible order. * This reduces the diffs in buildhistory and improves comparability between builds. (From OE-Core rev: 76f46391239d3e123cfde900c52ca12ac73fd84f) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* connman: update to 0.79Otavio Salvador2012-03-133-18/+18
| | | | | | | (From OE-Core rev: 3d3a7103f4d068caed202833ffe9db6b47e75082) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* image_types: ensure .rootfs.ext3 is created before vmdk is created.Dexuan Cui2012-03-131-0/+6
| | | | | | | | | | | | | | In the case of self-hosted-image.bb, IMAGE_FSTYPES = "vmdk", so the variables alltypes and subimages don't contain ext3, and .rootfs.ext3 won't be created, and finally the generated .hddimg and .vmdk don't have an actual rootfs -- the size of the .vmdk file is only about 9MB. [YOCTO #2067] (From OE-Core rev: 39f14c66d5df226689238810b759f502644deb5c) Signed-off-by: Dexuan Cui <dexuan.cui@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* udev-164: fixup "don't hardcode path to pidof"Andreas Oberritter2012-03-132-2/+2
| | | | | | | | | * Remove -e shell option, because pidof may return nonzero. (From OE-Core rev: b35c5e83d9f2e63917c2604046fb1a6d70a2a524) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* qt4: fix deps in libQtWebkit.la and QtWebKit.pcAndreas Oberritter2012-03-133-2/+3
| | | | | | | | | | | | | * Both files contain -L../../WebCore/release -L../../JavaScriptCore/release -lwebcore -ljscore * These paths and libs don't get installed. * When building a shared lib with libtool, that links with libQtWebKit, libtool adds these unneeded parameters to the linker command-line, thus linking fails. (From OE-Core rev: 4c41a3204ef72f53813ddc86fe525fa9c6714daa) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* image-vmdk: add NOISO to disable iso image creation since it's not neededSaul Wold2012-03-131-0/+1
| | | | | | | (From OE-Core rev: 92a8d604674bd500fdb4008bc34791776c84ae33) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* trace-cmd: modifying License informationJeff Lance2012-03-131-3/+5
| | | | | | | | | | * Adding "GPLv2 & LGPLv2.1" to create a dual license to cover the libraries. * Bump up PR (From OE-Core rev: 468aab48b07d345aadb6f449421824b0447d29c2) Signed-off-by: Jeff Lance <j-lance1@ti.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>