summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
Commit message (Collapse)AuthorAgeFilesLines
* quota: apply patch to obey tcp-wrappers configChristopher Larson2013-12-032-1/+77
| | | | | | | | | | | Without this, the tcpwrappers argument wasn't obeyed, and as such the build wasn't as deterministic as we'd prefer. (From OE-Core rev: 16bbdef239942276a1740a3b9dfe4e8c34a16b29) Signed-off-by: Christopher Larson <kergoth@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Don't set DESCRIPTION to the same value as SUMMARYPaul Eggleton2013-12-035-5/+0
| | | | | | | | | | | | Setting DESCRIPTION to the same value as SUMMARY doesn't do anything, since the value of DESCRIPTION will be derived from SUMMARY if not specified. (From OE-Core rev: e1e888585c84175580ad822d4a6c93f62e5ce16c) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* hdparm: make wiper appear before hdparm in PACKAGESChen Qi2013-11-301-1/+1
| | | | | | | | | | | | Make wiper appear before hdparm in PACKAGES so that wiper is packaged correctly. [YOCTO #5555] (From OE-Core rev: d294f1de082a5aadefa8efb3485ca3f091ef83bf) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsb: de-bash scripts to remove bash dependencyChen Qi2013-11-304-4/+4
| | | | | | | | | | | De-bash some script in lsb to make it not dependent on bash. [YOCTO #5555] (From OE-Core rev: 5ba55f9936d1f036518a1722f9c1e551477e167c) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rpcbind: Fix rpcbind restart failure when rpcbind is not runningZhangle Yang2013-11-291-1/+1
| | | | | | | | | | | "rpcbind restart" executes stop and then start function. However, if rpcbind is not started, "exit 0" shall be run in stop function, so start function will not be run at all. This patch changes "exit 0" to "return 0". (From OE-Core rev: ce17144b736b364175ab76e19e720292edfd2d81) Signed-off-by: Zhangle Yang <zhangle.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cronie: fix init.d/crond status return valueYue Tao2013-11-291-5/+2
| | | | | | | (From OE-Core rev: da9c74917804a823bcf122b778aef273c3b64ede) Signed-off-by: Yue Tao <Yue.Tao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tar: upgrade to 1.27.1Laurentiu Palcu2013-11-273-2/+2
| | | | | | | (From OE-Core rev: 58151b7e7ce651619e09fd8129f252332a342521) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bzip2: Remove stange copy line, automake does this for us anywayRichard Purdie2013-11-261-1/+0
| | | | | | (From OE-Core rev: 2ba32f7bd9deec0d977d7d2ff30275af54a41892) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lighttpd: upgrade to 1.4.33Valentin Popa2013-11-245-2/+2
| | | | | | | (From OE-Core rev: 1d376b40552e60b1fd18d95c6dd24d30aae849c8) Signed-off-by: Valentin Popa <valentin.popa@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ethtool: Fix ptest compileRichard Purdie2013-11-221-1/+1
| | | | | | | | | | | buildtest-TESTS is a phony target and does nothing which results in a do_install error since the tests aren't built. Since there isn't a suitable make target but the number of tests are small, hardcode the two to build to unbreak the build when ptest is enabled. (From OE-Core rev: 5dd8653fdcda5e0e8b4f3c37a46f357bc97ec66c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mdadm: flag __SANE_USERSPACE_TYPES__ to include int-ll64.h for powerpc64Chunrong Guo2013-11-201-0/+5
| | | | | | | | | | | | | | | | | *PPC64 uses long long for u64 in the kernel, but powerpc's asm/types.h prevents 64-bit userland from seeing this definition, instead defaulting to u64 == long in userspace. *fix the below error |super-ddf.c:4542:5: error: format '%llu' expects argument of type 'long long unsigned int', |but argument 5 has type '__u64' [-Werror=format=] |dprintf("BVD %u has %08x at %llu\n", 0, (From OE-Core rev: d3caab6eb03264b4f4d744f914598022299011ba) Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sysvinit: fix problem in switching runlevelsChen Qi2013-11-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Previously, if we switch to runlevel 1 and then switch back to runlevel 5, the network interface will be brought down and the NFS service will not be restarted correctly. The problem is that the networking and rpcbind services are brought down in runlevel 1 but not brought up in runlevel 5. This patch fixes the above problem. It's based on the assumption that in sysvinit-based system, runlevel 1 does not have networking support. This patch adjusts some init script parameters used by update-rc.d. It makes sure that networking starts before rpcbind which in turn starts before mountnfs.sh. When switching to runlevel 0, 1 and 6, the umountnfs.sh is run first before stopping rpcbind service, and the network is brought down afterwards. [YOCTO #5513] (From OE-Core rev: f12e1291b51ba6692b6809570d6a9b73c70a7fe9) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sysstat: upgrade to 10.2.0Saul Wold2013-11-203-6/+6
| | | | | | | | | Cleanup by moving files to $PN (From OE-Core rev: b9d63e318c2d8edb9b360544cca4c76be2904552) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* packagegroup-core-basic: define VIRTUAL-RUNTIME_syslogJackie Huang2013-11-121-1/+2
| | | | | | | | | | | | We have rsyslog and syslog-ng in our layer, and oe-core has sysklogd, define VIRTUAL-RUNTIME_syslog so that we can switch them easily. Set sysklogd as default here, we will have setting in distro confs to override it. (From OE-Core rev: 532e3efe76b62a4454193af9da59ced24e05bd33) Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ethtool: upgrade to 3.12.1Paul Eggleton2013-11-122-2/+2
| | | | | | | (From OE-Core rev: 3241f767e08df95f3d839fd50f53e6b88e39e094) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mdadm: Disable the RUN_DIR checkSaul Wold2013-11-051-0/+2
| | | | | | | | | | | This check was looking for /run/mdadm on the host system, this check is optional so disable it. [YOCTO #5447] (From OE-Core rev: d62882794890eeee8e8d5c9ba4837ec77a58d787) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xz: upgrade to 5.1.3alphaLaurentiu Palcu2013-11-051-2/+2
| | | | | | | (From OE-Core rev: c93a2f6cb61d7a94249ef6097b3cacac66324fcd) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* groff: fix pkg_postinst and remove unneeded do_install_prependChen Qi2013-11-011-9/+3
| | | | | | | | | | | | | | | Fix to take $D into consideration in pkg_postinst so that the postinst script could run at rootfs time. The existence of ${D} is ensured by the in base.bbclass. do_install[dirs] = "${D} ${S} ${B}" So there's no need for this do_install_prepend. (From OE-Core rev: 4facf4df0bc0d71d11ba53737faff6f2c6e5863b) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libuser: upgrade to 0.60Cristian Iorga2013-10-301-2/+2
| | | | | | | | (From OE-Core rev: 2a89bcf6f604b14ccc9aa98c674b6a4632015c52) 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>
* lsb: add begin function to lsb_log_messagePaul Barrette2013-10-301-0/+5
| | | | | | | | | | | | Some init scripts call a "begin" action to log early init phase messages, e.g. openvswitch-controller. Add the "begin" function to lsb_log_message. (From OE-Core rev: c956290902afd0e4f6d8f545dfe0a55796deec5e) Signed-off-by: Paul Barrette <paul.barrette@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* core-image-basic.bb: Allow user extensionsGary Thomas2013-10-301-0/+1
| | | | | | | | | | | | | | | Allow the user to provide additional packages to this image. This lets core-image-basic behave like all other core-image* recipes (which do support CORE_IMAGE_EXTRA_INSTALL), as well as match the documentation which suggests this as the mode to extend any core-image* image. v2 - drop redundant setting of CORE_IMAGE_EXTRA_INSTALL (From OE-Core rev: 5faabf398819d40b55c46bc83ae03942d115024b) Signed-off-by: Gary Thomas <gary@mlbassoc.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* recipes: Remove PR = r0 from all recipesRichard Purdie2013-10-3018-18/+0
| | | | | | | | | | | | | Remove all PR = "r0" from all .bb files in oe-core. This was done with the command sed -e '/^PR.*=.*r0\"/d' recipes*/*/*.bb -i We've switching to the PR server, PR bumps are no longer needed and this saves people either accidentally bumping them or forgetting to remove the lines (r0 is the default anyway). (From OE-Core rev: 58ae94f1b06d0e6234413dbf9869bde85f154c85) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cups: upgrade to 1.7.0Saul Wold2013-10-303-22/+20
| | | | | | | | | | Rename and consolidate cups16.inc to cups.inc use PACKAGECONFIG for pam. (From OE-Core rev: b749bed86efcdc063d720fa095ffa7a7984cd53c) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sudo: upgrade to 1.8.8Cristiana Voicu2013-10-302-3/+3
| | | | | | | | | | | License checksum updated to reflect additional Copyright for file getopt_long.c, owned by The NetBSD Foundation, Inc (From OE-Core rev: e78a5cf3af993d87300d6a527fa14ec6ef9ed79a) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* at: upgrade to 3.1.14Cristiana Voicu2013-10-303-58/+2
| | | | | | | | | | Removed 2 patches because they were merged upstream (From OE-Core rev: ff1707449d851a365e686e6d2cbe822631001147) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pigz: Add pigz to buildtools tarballKonrad Scherer2013-10-301-1/+1
| | | | | | | | | | | | | | When using the tar executable in the buildtools, tar will execute gzip. If this happens before zlib-native is built, then the gzip on the host will be used and can fail if the libz in the buildtools is not compatible. Adding pigz to the build tools avoids this host contamination. (From OE-Core rev: af6424e8c2bf3a938fddabc669c0956d68964ed0) Signed-off-by: Konrad Scherer <Konrad.Scherer@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* grep: upgrade to 2.15Cristiana Voicu2013-10-291-4/+2
| | | | | | | (From OE-Core rev: b4996f3ef827cdc12c39fe58fdb50d7486bfc7f0) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tzcode & tzdata: update to 2013hJoe Slater2013-10-292-7/+7
| | | | | | | | | | Update recipes to version 2013h of timezone code and data. (From OE-Core rev: 95c9355c35d24b60f44857a8c2e3c9860a91d23b) Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ethtool: upgrade to 3.11Paul Eggleton2013-10-292-2/+2
| | | | | | | (From OE-Core rev: ba5a3e7ed4e58865c770e9480e322a4c4a939c02) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pigz: bump to 2.3.1Maxin B. John2013-10-263-26/+3
| | | | | | | | | | Update pigz to latest release - 2.3.1 Drop ldflags.patch as it has been merged upstream (From OE-Core rev: 8081dcb03f54efd551d1c8fe8a0484f8270053e0) Signed-off-by: Maxin B. John <maxin.john@enea.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cracklib: cracklib-native should not depend on zlibKonrad Scherer2013-10-261-1/+1
| | | | | | | (From OE-Core rev: 89d7d46947d9bb8c7bf568c65e52d5bbe159027f) Signed-off-by: Konrad Scherer <Konrad.Scherer@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* screen: dynamically add or remove a entry to/from /etc/shellsMing Liu2013-10-261-0/+10
| | | | | | | | | | | | 1 Add base-files to RDEPENDS. 2 Add pkg_postinst and pkg_postrm to add and remove a entry in /etc/shells. (From OE-Core rev: 95618d6d5c4f8e5f0aec632d35e02ad5a33a1f75) 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>
* bash: dynamically add or remove a entry to/from /etc/shellsMing Liu2013-10-261-3/+7
| | | | | | | | | | | | | 1 Add base-files to RDEPENDS. 2 Use ${base_bindir} in regex to match bash path. 3 Add pkg_postrm to remove the entry from /etc/shells that added by pkg_postinst. (From OE-Core rev: c3f93357e2d3ece910ff0e2d18eba3fb94fb5c3c) 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>
* libarchive: replace += with _append for appending to OVERRIDES variablesMing Liu2013-10-261-2/+2
| | | | | | | | | | | | In some cases, it's unfit to use "+=" in a conditional appending, we would end up with the variable being set rather than being appended, which is not it mean to. (From OE-Core rev: 15ba35aebd7550e53e9f2f35de6b709937dbb55c) 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>
* bzip2: replace += with _append for appending to OVERRIDES variablesMing Liu2013-10-261-1/+1
| | | | | | | | | | | | In some cases, it's unfit to use "+=" in a conditional appending, we would end up with the variable being set rather than being appended, which is not it mean to. (From OE-Core rev: 9e9b5cbc352e1f8dce46458926b38a5aefc18fc3) 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>
* minicom: fix -v/-h return valueLu Chong2013-10-262-0/+36
| | | | | | | | | | | The previous return value for '-h' and '-v' options was 1 which was not correct. These two options should return 0 instead. (From OE-Core rev: 88701b8c8b73202a738447ea8a1c169a0efdc7ed) Signed-off-by: Lu Chong <Chong.Lu@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mdadm: upgrade to 3.3Laurentiu Palcu2013-10-262-9/+7
| | | | | | | | | | Refreshed mdadm-3.2.2_fix_for_x32.patch to apply correctly. (From OE-Core rev: dd125fc30042524079e32027f8be0784f140e379) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tar: upgrade to 1.27Laurentiu Palcu2013-10-263-12/+12
| | | | | | | | | | Refreshed remove-gets.patch to apply correctly. (From OE-Core rev: 8ba336d0fb86ec8eff65d39ef1db2ca8950f158f) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* packagegroup-core-basic: libuser has a hard depenency on libpamSaul Wold2013-10-181-1/+1
| | | | | | | | | | Since libpam is only built when DISTRO_FEATURES pam is enabled we should not be trying to build libuser also. (From OE-Core rev: 5b3c2aac48dd060f20a3c65f15560996c35695fd) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* crond: remove UID check in init scriptJack Mitchell2013-10-181-8/+0
| | | | | | | | | | | | this init script fails when the default shell is busybox sh. This is because busybox sh doesn't set the UID. No other init scripts in oecore feel the need to check the UID so just remove the check. (From OE-Core rev: dd6a45536043af34c05a699e468cef4845f7affd) Signed-off-by: Jack Mitchell <jmitchell@cbnl.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* byacc: upgrade to 20130925Laurentiu Palcu2013-10-181-2/+2
| | | | | | | | (From OE-Core rev: e41124b3c5a36304d26527864c71f9802066d25b) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xz: Add nativesdk for Python3 nativesdk dependencySaul Wold2013-10-181-1/+1
| | | | | | | (From OE-Core rev: 41a8c1f5fc0b4601af8b5b8b08f641668a39550d) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sysstat: upgrade to 10.1.7Saul Wold2013-10-184-42/+8
| | | | | | | | | | | Remove patch that was backported and from verion we updated to Also cleanup white space (From OE-Core rev: 849fbd50a52f1aa0330b47993d38a0f7812977c7) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libarchive: Add -native version needed for pixzRichard Purdie2013-10-141-1/+1
| | | | | | (From OE-Core rev: 7c4f4231dfeb5d7599f18e4b2fbb5a8a6427c01a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsbinitscripts: Update to 9.50Saul Wold2013-10-141-3/+3
| | | | | | | (From OE-Core rev: 06af5c562251f3b7c6dff2436095222dfac9300c) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tzdata: Update to 2013gSaul Wold2013-10-141-4/+5
| | | | | | | | | | Add the README to LIC_FILES_CHKSUM and update LICESE since it now mentions that some files are licensed under BSD (From OE-Core rev: b1b02835b30e44cd923c57ac5a77de8fc1e0e474) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tzcode: Update to 2013gSaul Wold2013-10-142-26/+26
| | | | | | | | | | The updated README now mentions that some files are derived from BSD, so update the LICENSE to be PD & BSD. (From OE-Core rev: 063f67f5ecbe6edc226e1a25b5b8387881592c34) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* man-pages: upgrade to 3.54Saul Wold2013-10-141-2/+2
| | | | | | | (From OE-Core rev: f6cda544452b6a495c84bcc42cec9c03e6102661) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cups: upgrade to 1.6.4Saul Wold2013-10-141-2/+2
| | | | | | | (From OE-Core rev: b92d1d9bf3fbfd92d0baec7939e06505eaf45f09) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ltp: update to new release 20130904Anders Roxell2013-10-141-5/+5
| | | | | | | | (From OE-Core rev: 5d6ef973fe101bb3547a14452ded79536d9d2582) Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>