summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
Commit message (Collapse)AuthorAgeFilesLines
* at: Fix --with/without pam optionsRichard Purdie2013-03-251-1/+1
| | | | | | | | | | The --with/--without pam support in configure appears to have been dropped leading to builds which can detect host headers, then fail or result in non- determinstic builds. Add an explicit option to fix this detection. (From OE-Core rev: 4e1ea0e22cf5310dbe18b5427a91d86cc4a136fe) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* packagegroup-core-lsb: add nsprKang Kai2013-03-251-0/+1
| | | | | | | | | | | Add nspr for LSB library check. [YOCTO 4015] (From OE-Core rev: dd0c9e755d47cd86cec3a3bae2482969460f2a3b) Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sudo: Fix out of tree builds ${B} != ${S}Richard Purdie2013-03-231-1/+1
| | | | | | | | The last change to sudo broke out of tree builds, fix this. (From OE-Core rev: a1226175c405db6eacb6e490e8e635b9dd156126) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Perl packages shouldn't be allarchJesse Zhang2013-03-235-5/+5
| | | | | | | | | | | Perl packages should know about arch so that they could install to the correct libdir. Or else they always install to the default libdir in multilib builds. (From OE-Core rev: a6b186a1a5cfc6ae9c099af0ed4217d91f5d4ef3) Signed-off-by: Jesse Zhang <sen.zhang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* packagegroup-core-tools-debug: split out Eclipse packagesPaul Eggleton2013-03-231-1/+1
| | | | | | | | | | Split out the packages added for Eclipse remote debugging to a separate package group so that we can avoid pulling them in if not using Eclipse. Fixes [YOCTO #3251]. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sudo: Compile mksigname and mksiglist for build hostKhem Raj2013-03-231-0/+5
| | | | | | | | | | | | | | | | | cross compiling sudo doesnt work well since it uses mksigname and mksiglist to generate C sources which are then used in sudo build itself. With this patch now we make sure those hosttools are compiled for build machine. It fixes the build failures like ./mksigname > signame.c /bin/sh: ./mksigname: cannot execute binary file make[1]: *** [signame.c] Error 126 (From OE-Core rev: 2ce5b1364ef6eb276352f7170d23dc3492c779f6) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* polkit: removeRoss Burton2013-03-236-233/+0
| | | | | | | | | | | | | Previous commits have meant that PolicyKit isn't used by default anymore, so remove this now that it's been integrated into meta-gnome. Rationales for this move inludes that PolicyKit isn't "core" for embedded systems, and future versions require the SpiderMonkey JavaScript runtime. (From OE-Core rev: 8c9fad86d8bd86f13d61a1a5cd65d12b16a9e0de) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libuser: Use abs_srcdir instead of srcdirKhem Raj2013-03-231-9/+18
| | | | | | | | | | srcdir is still relative to pwd. We need to use abs_srcdir to get absolute source directory names (From OE-Core rev: 9297e01b2095d90b5365d23c10de699a7cf411ea) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xinted: Fix case where ${B} != ${S}Richard Purdie2013-03-221-3/+3
| | | | | | | | | do_install needs to reference files in ${B} and we need to run do_configuze in ${S}. (From OE-Core rev: 5a5aff6a77dfc0bae66077589a93ba6d1755bcdc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* texinfo: Fix case where ${B} != ${S}Richard Purdie2013-03-221-1/+1
| | | | | | | | The install function needs to reference generated files in ${B}. (From OE-Core rev: feebca46f3ef798ab4a203bc0b9419d883feaee7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* watchdog: Fix case where ${B} != ${S}Richard Purdie2013-03-222-0/+28
| | | | | | (From OE-Core rev: 0ecfe4fd7d89252a7db6c9361fb5674cb098796d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pam: Fix case where ${B} != ${S}Richard Purdie2013-03-222-0/+25
| | | | | | (From OE-Core rev: 3d27366f17e597380fee738f14f119d880a77985) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libuser: Fix case where ${B} != ${S}Richard Purdie2013-03-222-1/+28
| | | | | | | | | Fix out of tree builds and a parallel make race, see the patch header for details. (From OE-Core rev: ef259227fc6d8147b493554e381aa196f5a7a96a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* grep: Always use locale.hAlexandru DAMIAN2013-03-202-0/+18
| | | | | | | | | | | | | | | | | | The changes in the grep 2.5 configuration always leave out HAVE_LOCALE_H - it has been removed from other files, but not from everywhere. This leads to a crash in certain configurations where the size of int is not the size of pointer; this happens because setlocale() is used while being undeclared. [YOCTO #3959] (From OE-Core rev: 4ca3a19c6fb93a6e85017f7ae465b5d2eba9463e) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tzcode & tzdata: update to 2013b versionsJoe Slater2013-03-192-10/+9
| | | | | | | | | | Rename and modifying existing recipes to use 2013b versions of time zone. (From OE-Core rev: ba748709ff01f9a0ea9b1671d509c971a271ed2f) Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* iptables: Turn ipv6 and libnfnetlink support into PACKAGECONFIGKhem Raj2013-03-182-3/+59
| | | | | | | | | | | | | | | | | | | | | | | Detection of libnfnetlink is automatic in configure which means that when you have meta-networking in your cosmos, it would create a race condition where if libnfnetlink is already staged then it will be enabled otherwise disabled. The issue happens quite often with sstate and high parallelism. Since the dependency libnfnetlink is not part of OE-Core, this patch turns it into a PACKAGECONFIG which is diabled by default and iptables is patched to provide the knob. If you want to enable libnfnetlink support then it can be done in a bbappend where you are sure that you are also including meta-networking in your distro. While at it also turned ipv6 support into packageconfig (From OE-Core rev: 0332551d90c866c5874529e81819b81b534e14be) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libnewt: Fix ${B} != ${S} (partial)Richard Purdie2013-03-181-1/+1
| | | | | | | | Fix low hanging out of tree build issue but others remain. (From OE-Core rev: 414f748ee499f629bf50eb3fa70e20e2105b3c49) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sudo: Fix case where ${B} != ${S}Richard Purdie2013-03-181-2/+2
| | | | | | | | | Fix out of tree builds by using full path to files in ${S} and remove cwd assumptions. (From OE-Core rev: 97dc39e42e95dcadc7bed1aee32db3560e21efe5) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pigz: Update to 2.3Saul Wold2013-03-182-11/+14
| | | | | | | | | Rebased the patch and added math library to satify tree.c's log() requirement. (From OE-Core rev: f235a69f8d5cee6f6d8e7feccd83e8e619e2ddcf) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sysstat: Update to 10.1.4Saul Wold2013-03-182-8/+8
| | | | | | | (From OE-Core rev: 22d7ca4885f61ebbaa6e280858523f062f447a05) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsbinitscripts: Update to 9.45Saul Wold2013-03-181-3/+3
| | | | | | | (From OE-Core rev: 07c184f444454fe53be74905d4a56ea7aad2377d) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* man-pages: Update to 3.50Saul Wold2013-03-181-2/+2
| | | | | | | (From OE-Core rev: 646d0eea7c91e2c7cb676bfbb5ce2be4d800da9b) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cracklib: Generate compiled dict using default dictionaryColin Walters2013-03-181-1/+8
| | | | | | | | | | | | | | | | | | | | While cracklib compiles, the generated library's FascistCheck() API will look for the default compiled dictionary, fail to find it, and invoke exit(1), which then in turn breaks gnome-initial-setup that uses cracklib via libpwquality. (Quality here obviously referring to the password, and not the libraries...) What we do here is basically the same as what happens in the current Fedora spec file, except the latter uses a far larger dictionary. To make this work, we need to build cracklib-native because the dictionary compiler is written in native code. (From OE-Core rev: ca4d0c455525aa775f7fe0531ad0c6f5dcdc32d7) Signed-off-by: Colin Walters <walters@verbum.org> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cronie: Upgrade to v1.4.9Radu Moisan2013-03-181-3/+3
| | | | | | | | (From OE-Core rev: 0c4e25140f7b821962f6a5c0e77dbe96969ac04c) Signed-off-by: Radu Moisan <radu.moisan@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* hdparm: Upgrade to v9.43Radu Moisan2013-03-181-3/+3
| | | | | | | | (From OE-Core rev: c2c0876045e2a90b7158d3e81727205eb1c0d6ea) Signed-off-by: Radu Moisan <radu.moisan@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ed: Upgrade to v1.7Radu Moisan2013-03-182-2/+2
| | | | | | | | (From OE-Core rev: 74bc947cbadd44812b9171c2d16d319bb9df913d) Signed-off-by: Radu Moisan <radu.moisan@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gawk: Upgrade to v4.0.2Radu Moisan2013-03-181-3/+3
| | | | | | | | (From OE-Core rev: 61c1bbb744ec709e002c67cf531892bf216e4724) Signed-off-by: Radu Moisan <radu.moisan@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* watchdog: Upgrade 5.12 -> 5.13Khem Raj2013-03-152-20/+8
| | | | | | | | | | | | Part of ping failure patch is already applied in 5.13 hence refreshed the patch. Tested on x86_64 box (From OE-Core rev: 1834400555d0e2bad73ee472d5991464fec70d53) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* polkit: explicitly disable systemd if we're using consolekitRoss Burton2013-03-151-2/+3
| | | | | | | | (From OE-Core rev: 3a92104e1f7061296c293ac261e336e17934f8c7) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libtirpc: Fix build on uclibcKhem Raj2013-03-121-27/+18
| | | | | | | | | | | | Last upgrade of libtirpc broke the uclibc specific patch. So lets refresh it and make it compile for uclibc again (From OE-Core rev: 4f46023fc24354c8144e755daf29c83926f3e1f6) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sudo : upgrade to 1.8.6p7Andrei Dinu2013-03-071-2/+2
| | | | | | | | (From OE-Core rev: 8ea6517cac8df48bb9f17d5078360748bdda7b38) Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bash: Use new _ptest functionsBjörn Stenberg2013-03-071-9/+6
| | | | | | | | (From OE-Core rev: 1839f969bc5d6e1555f5e5d218c0265f817fe300) Signed-off-by: Björn Stenberg <bjst@enea.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* shadow: add build dependency on shadow-nativeMartin Donnelly2013-03-071-1/+2
| | | | | | | | | | | The postinst requires patched pwconv and grpconv from shadow-native, without these the rootfs creation uses the host binaries and fails. (From OE-Core rev: 4baf25420bafb1f3c063efb053d653bd37e01a62) Signed-off-by: Martin Donnelly <martin.donnelly@ge.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* slang: Fix .debug packaging warning after debug striping was fixedRichard Purdie2013-03-051-0/+1
| | | | | | (From OE-Core rev: 2cdec8044cef963a1cc376484b4c7fa29924d5dc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ethtool: upgrade to 3.8Constantin Musca2013-03-051-2/+2
| | | | | | | (From OE-Core rev: 81bdf523f01fe9e9e9053e20a687ba7de5041cbf) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libtimedate-perl: updated to 2.30Bogdan Marinescu2013-03-051-3/+3
| | | | | | | | (From OE-Core rev: c75d2ee3a284549aa983157d8ad8e3e2227961fa) Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* recipes: Fix ALLOW_EMPTY with no package specifiedRichard Purdie2013-03-051-1/+1
| | | | | | | | | | | There are various usages of ALLOW_EMPTY with no packages specified. This is not recommended syntax, nor is it likely to be supported in the future. This patch improves the references in OE-Core, either removing them if they're pointless (e.g. when PACKAGES="") or specifying which package it applies to. (From OE-Core rev: fe81bd4f600877e63433184cfc2e22c33bb77db6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* chkconfig-alternatives-native: just append to PROVIDESMartin Jansa2013-03-021-1/+1
| | | | | | | (From OE-Core rev: f0c600ce8971c5444198ffe4f596b671e3e668cf) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* zip: explictly disable bzip2 supportMartin Jansa2013-03-021-2/+2
| | | | | | | | | | | * we don't depends on bzip2, so make sure it's not autodetected in sysroot (From OE-Core rev: e93186642708cb99bfba776012e345c42e9bd0d5) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cups: remove old patch filesSaul Wold2013-03-023-3159/+0
| | | | | | | (From OE-Core rev: c3c51a5961f77d51e7f8eb1f0746d16576663bba) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* shadow: remove grpconv argc checkMartin Donnelly2013-03-011-1/+11
| | | | | | | | | | | | The patched version of grpconv takes arguments but the check on argc was not removed. This patch removes this check which otherwise results in a spurious warning during rootfs creation. (From OE-Core rev: 845a24e78835e93807cfb810fa99715ac4d14e21) Signed-off-by: Martin Donnelly <martin.donnelly@ge.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sudo : upgrade to 1.8.6p6Andrei Dinu2013-02-281-2/+2
| | | | | | | | (From OE-Core rev: edc4f4c04d1a853137cb3cb2638e23bdcb810833) Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* minicom: upgrade to 2.6.2Cristian Iorga2013-02-284-90/+4
| | | | | | | | | | | | - all patches removed; - fixes already integrated in source code; - gcc4-scope.patch removed as was not enabled; (From OE-Core rev: b0e41a317791aae943370f4e1affcfae32797c87) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsbinitscripts: Update to 9.44Saul Wold2013-02-281-4/+4
| | | | | | | (From OE-Core rev: 910d37ae5a42c1a4e696cfde48ba9b209d8c3a78) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* man-pages: Update to 3.47Saul Wold2013-02-281-2/+2
| | | | | | | (From OE-Core rev: 86d41fef5c506a0751058054d71bfcc7fe316862) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* parted: fix several integer overflowsMing Liu2013-02-282-2/+38
| | | | | | | | | | | | | | | Integer overflows were found in libparted/labels/dvh.c, while attemptting to assign unsigned int values to int types in some places. These overflows only can be observed on BE platforms like MIPS, when the "WORDS_BIGENDIAN" macro is defined in parted. Defined by unsigned int instead. (From OE-Core rev: 9acaa764a4df8d589011ff597bba2afc05d6e78b) Signed-off-by: Ming Liu <ming.liu@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsbtest: sync test suite packages versionKang Kai2013-02-282-6/+6
| | | | | | | | | | | | | | Update file packages_list after sync test suite packages version with upstream. Check date: Feb 20, 2103 Bump up PR. (From OE-Core rev: f43ba5e41ac5c1fe9d6e66fa1a1f8a51f9cd289c) Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* augeas: change SRC_URIConstantin Musca2013-02-262-2/+2
| | | | | | | | | | - replace http://augeas.net/download/${BP}.tar.gz with http://download.augeas.net/${BP}.tar.gz (From OE-Core rev: 8e69f0ea42505e8f703893e18d73658b83d3b046) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tcp-wrappers: add socklen_t.patchfarrah rashid2013-02-252-0/+60
| | | | | | | | | Replace incorrect size_t data type with socket length data type (From OE-Core rev: c2d456cb79f42eefd50605d72361ded823568d1b) Signed-off-by: farrah rashid <farrah.rashid@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* man: Remove wildcard from SRC_URIMark Hatle2013-02-223-168/+25
| | | | | | | | | | | | | | | | | | | | | [ CQID: WIND00402802 ] Remove the wildcard from the SRC_URI. This causes problems when you .bbappend and add a FILESEXTRAPATHS entry. The unpack task may be unable to find the files to unpack leading to an error. Avoid wildcards at all costs... Note, remove both man-1.5m2-multiple.patch and man-1.6e-lzma+xz-support.patch, they were not being applied in the previous version. The later also fails to apply when added to the SRC_URI. (From OE-Core rev: 61b60906b2825d4f9ea1f5ae11e1f9fcc77ac4e7) Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>