summaryrefslogtreecommitdiffstats
path: root/meta
Commit message (Collapse)AuthorAgeFilesLines
* task-core-lsb.bb: Add packages liberation-fonts to lsb-imagXiaofeng Yan2011-05-041-0/+1
| | | | | | | | | Add font set to lsb-image to solve bugs from lsb test (From OE-Core rev: d54312c95d81b1ddf7fa09af4ade40dfddfe8757) Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libcap: upgrade to version 2.20Qing He2011-05-043-7/+7
| | | | | | | | | | from 2.19 - set RAISE_SETFCAP=no in make option to inhibit target binary run (From OE-Core rev: 02ae650e816fcab596643fb35f5cf2758530414e) Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lzo: upgrade to version 2.05Qing He2011-05-043-5/+7
| | | | | | | | | from 2.04 (From OE-Core rev: e319f00ec91e800f2ac6bd87bc1a6c78006c83e3) Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* shared-mime-info: upgrade to version 0.90Qing He2011-05-043-5/+40
| | | | | | | | | | from 0.80 - parallel build with 0.9 is buggy, disable part of the check for now (From OE-Core rev: 122f8e4af98a049de01526a6d09e7eb422494b9a) Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* busybox: upgrade to version 1.18.4Qing He2011-05-0410-37/+18
| | | | | | | | | | from version 1.17.3 - remove make-382-fix since it's upstreamed (From OE-Core rev: bb92a1852e17232c07658eef013f243ca6780563) Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* curl: upgrade to version 7.21.6Qing He2011-05-043-4/+9
| | | | | | | | | from 7.21.2 (From OE-Core rev: 7b26788c52136eb6a95507758936756b3dfcbaa4) Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* augeas: upgrade to version 0.8.1Qing He2011-05-042-6/+6
| | | | | | | | | from 0.7.4 (From OE-Core rev: 06acddec116a14b7574d2008e4397e50b4d5e753) Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* acl: upgrade to version 2.2.51Qing He2011-05-042-6/+6
| | | | | | | | | from 2.2.49 (From OE-Core rev: ce278d2a763d4f4f2c71c7cbdf073ab1f4c43c61) Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* attr: upgrade to version 2.4.46Qing He2011-05-049-238/+7
| | | | | | | | | | | from 2.4.44 - remove the backported patch that is now in the tarball - prog path issue has also been fixed in the upstream (From OE-Core rev: b56ab842a8c0bc183f839edc035dc89399d783c3) Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* netbase: fix check for nfsroot in if-pre-up.d scriptPaul Eggleton2011-05-042-2/+2
| | | | | | | | | | | | | The if-pre-up.d/nfsroot script was no longer functioning correctly due to a change in iproute2's installation of the "ip" executable. The script will now function correctly regardless of whether ip is in /bin or /sbin. Fixes [YOCTO #1006]. (From OE-Core rev: fa4f6d1d01a3ce9fbc6f479f65138f1af7369714) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* logging: delete the oe(note|warn|fatal|debug) functionsDarren Hart2011-05-041-26/+1
| | | | | | | | | | | The new logging.bbclass replaces the oe* logging functions with bb* equivalents. There are no longer any users of the oe* API within oe-core. Remove the oe* functions. (From OE-Core rev: 168d94be0e28fcbefda9df07d6d1b0cfd96e75fc) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* logging: update existing oe* logging users to the bb* interfaceDarren Hart2011-05-0414-42/+42
| | | | | | | | | | | | | | The new bash logging class provides bbnote, bbwarn, bbfatal, and bbdebug replacements (as well as bbplain and bberror) for the oe* equivalents. Use the new bb* API in preparation to delete the oe* logging API. This patch was automatically generated by a sed script. The result has been visually inspected and used to build core-image-sato for qemux86. (From OE-Core rev: a1f09fce5caba389d0484b169f0cde85d64514fa) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* distro_check.py: Fix some bugs in distro_check.pyMei Lei2011-05-041-6/+11
| | | | | | | | | | | The recipe meta-ide-support's alias is Poky, but not defined in distro_exceptions, this will lead an error. The compare_in_distro_packages_list function omit a split process, this will lead to a form issue. Change the log file generate way, use symbolic links link to the latest log file, instead of appending every log file in old log. (From OE-Core rev: 123a7f49753aef4d5ccb5f5a5590c3c88775c6d0) Signed-off-by: Mei Lei <lei.mei@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Fix matchbox-panel-2 compile errorGary Thomas2011-05-042-2/+54
| | | | | | | | | | | | | | | | | | | | | | | | This patch is needed when building with GCC-4.6.0 -- ------------------------------------------------------------ Gary Thomas | Consulting for the MLB Associates | Embedded world ------------------------------------------------------------ >From 7337ecd4970f7d94080ad70b912bdb2742d2d7aa Mon Sep 17 00:00:00 2001 From: Gary Thomas <gary@mlbassoc.com> Date: Thu, 28 Apr 2011 11:03:44 -0600 Subject: [PATCH] matchbox-panel: fix compile error with GCC-4.6.0 Upstream-Status: Pending [sgw: added Upstream-Status] (From OE-Core rev: ace616b362bbcba9d9c78a2814a9cb943ac3f4a2) Signed-off-by: Gary Thomas <gary@mlbassoc.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* task-core-lsb: add xdg-utils into lsb imageKang Kai2011-05-041-0/+1
| | | | | | | | | | Add xdg-utils in task-core-lsb, for LSB command check. Part fixes [Yocto 520] (From OE-Core rev: 74040af7c44718e05b1f0eeccb267afa1aa6d3f6) Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsbsetup: add commands install_initd and remove_initdKang Kai2011-05-041-1/+6
| | | | | | | | | | | | Add commands install_initd and remove_initd link to chkconfig, which can handler LSB format init.d scripts. Needed by LSB commands check. Bump PR to r2 Part fixes [Yocto 520] (From OE-Core rev: 5b0b880f9c2ab2fa632cad715f3c4c646bb9301f) Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* groff: update to 1.20.1Kang Kai2011-05-045-144/+36
| | | | | | | | | | | Update groff to 1.20.1, add SUMMARY and LICENSE info From OE 70bf94cd8669f549ca90581e9592d409b6e24e2e Fixes [Yocto 879] (From OE-Core rev: 6c5cbb73550639ec71cb9564883253dbe1c09f36) Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* liberation-fonts: postinst can't be called offlineIlya Yanok2011-05-042-0/+6
| | | | | | | | | | | fc-cache should be called on target system. Or maybe we should pass a suitable directory list to it? (From OE-Core rev: c5156d26fc9ebacb2141f072aee698a7284d7cb8) Signed-off-by: Ilya Yanok <yanok@emcraft.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* core-image-directdisk: add LIC_FILES_CHECKSUMTom Zanussi2011-05-041-0/+3
| | | | | | | | | Fix for build failure. (From OE-Core rev: 1d7f9211af04bcf77061eaad8a272e976c2d7c1d) Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gettext.bbclass: Updates to better handle gettext alternativesRichard Purdie2011-05-042-15/+15
| | | | | | | | | | | | * Change gettext dependency to virtual/gettext * Ensure INHIBIT_DEFAULT_DEPS removes gettext dependencies * Use BASEDEPENDS to ensure dependencies are added in native/nativesdk cases (From OE-Core rev: d19735ad5a45f969918fb73ea4845bef48d9ee24) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* base.bbclass: Create a BASEDEPENDS variable other classes can use to add to ↵Richard Purdie2011-05-041-3/+5
| | | | | | | | the base dependencies, avoiding native/nativesdk issues (From OE-Core rev: fe2f1e1708e34758c70db37ce480453e10fc4eb1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libnss-mdns: add $D to postinst pathsIlya Yanok2011-05-041-3/+3
| | | | | | | | | | | Post installation script can be called during image creation so paths should relative to $D. (From OE-Core rev: 472c04ed1a8715243de0c5430883bc23d60aca19) Signed-off-by: Ilya Yanok <yanok@emcraft.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: create SMP config fragmentBruce Ashfield2011-04-281-2/+2
| | | | | | | | | | Updating the meta SRCREVs to stage a SMP config fragment that BSPs can use to add the functionality from layers. (From OE-Core rev: e77e2ff2c7c51951f782b50da3d2aad3ae8d763c) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* perl_5.12.2.bb: Undefine features not found in uclibcKhem Raj2011-04-282-23/+7
| | | | | | | | | [sgw: cleaned whitespace issue, removed unneeded ;patch=1] (From OE-Core rev: b868f6784f57db569bf300722324b3c8869de7bc) 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>
* qemu: Fix non-sdl/opengl buildSaul Wold2011-04-283-1/+45
| | | | | | | (From OE-Core rev: 4b3e39a9dd491a8a6996fce8ed0d05074ea920f5) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* world-broken: add older clutters since we don't want clutter confusionSaul Wold2011-04-281-3/+6
| | | | | | | (From OE-Core rev: e0ed7caa65c9b6667d311d3eb26ff99dd778173d) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* alsa-tools: Add checksumsSaul Wold2011-04-281-1/+7
| | | | | | | (From OE-Core rev: b6864fa496fa108ac4ef644ee14b841b9fc8565b) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* tidy: move old clutter demo to meta-demoappsSaul Wold2011-04-284-64/+0
| | | | | | | (From OE-Core rev: 6f8c5dbf3cbe33d5d5c037a9078291da1b7e56e8) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* table: move old clutter demo to meta-demoappsSaul Wold2011-04-283-41/+0
| | | | | | | (From OE-Core rev: 36ec158df1ed6db4dc917d16fa7adb0f34fec0b4) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* clutter-box2d: add DEPENDS for clutter-1.6Saul Wold2011-04-281-0/+2
| | | | | | | (From OE-Core rev: 96d672d735fb1cf7d0a450ad74bbccb32641a374) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* alsa-utils_1.0.23.bb: Fix compilation for uclibc targetsKhem Raj2011-04-281-5/+4
| | | | | | | | | | | Use libc-uclibc override to cover all uclibc cases inherit gettext class instead of adding gettext to DEPENDS directly (From OE-Core rev: d33570f43cd9f0ff3182c5ed28ce721928074b8a) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* glib-2.0: Inherit gettext should provide right libintl so remove from DEPENDSKhem Raj2011-04-284-3/+112
| | | | | | | | | Add no-iconv.patch to provide dummy libiconv in case of uclibc (From OE-Core rev: f06caba152bed7f0b739ed4d3dd3103034d00000) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* poky-default.inc: Weakly assign gettext to provide virtual/gettextKhem Raj2011-04-281-0/+1
| | | | | | | (From OE-Core rev: 1ad22722a4e35c52610983172e41982e21881c6c) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gettext_0.17.bb: PROVIDE virtual/gettext and RCONFLICT with proxy-libintlKhem Raj2011-04-281-2/+2
| | | | | | | (From OE-Core rev: 335e689efd45c1bf34dd73112eb29286a16eb44c) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gettext: Divide packaging into gettext-runtime and restKhem Raj2011-04-281-4/+31
| | | | | | | | | | | This helps in footprint on space constrained systems e.g. uclibc based systems where packaging full gettext just for libintl can be waste of space. (From OE-Core rev: cdf36c44ada6ccdd2b020d1271ff01e285615016) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* autotools.bbclass: Copy gettext files only if --disable-nls is not setKhem Raj2011-04-281-9/+10
| | | | | | | (From OE-Core rev: 040d4dea9637a4723cbb2a74975130d3b86e569a) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* insane.bbclass: Move code to add function to tasks toward the endKhem Raj2011-04-281-7/+8
| | | | | | | | | Cosmetic change to make syntax highlighters happy (From OE-Core rev: 1efeeecc33862e4d8c618e1f118ba60258bc6c64) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libsdl: add SRC_URI ChecksumsSaul Wold2011-04-281-0/+3
| | | | | | | (From OE-Core rev: fea759adc52456c890b245a458e9053e94e122d0) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* logging: add bb* logging mechanisms for bash recipe functionsDarren Hart2011-04-282-0/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following logging mechanisms are to be used in bash functions of recipes. They are intended to map one to one in intention and output format with the python recipe logging functions of a similar naming convention: bb.plain(), bb.note(), etc. For the time being, all of these print only to the task logs. Future enhancements may integrate these calls with the bitbake logging infrastructure, allowing for printing to the console as appropriate. The interface and intention statements reflect that future goal. Once it is in place, no changes will be necessary to recipes using these logging mechanisms. I opted to write new functions instead of modifying the oe* logging functions from base.bbclass (and utils.bbclass in oe) for a couple reasons. First, one of my goals was to generate a uniform logging API between bash and python in recipes. Second, there are no users of oe* logging in meta (oe-core) or meta-yocto, while several oe recipes do use them. I wanted to make a clean start with the freedom to change behavior without forcing the oe recipes to change or experience unexpected logging changes. Eventually, the oe recipes can be migrated to the new bb* logging routines and the existing oe* routines can be retired (deleted). (From OE-Core rev: 7cb3f0206619b725e404282fa7a3ac50b4609f1e) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Cc: Chris Larson <clarson@kergoth.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* logging: fix oedebug loglevel testDarren Hart2011-04-281-4/+4
| | | | | | | | | | | | When the existing test for loglevel fails, the syntax used results in the recipe exiting with a silent failure. Performing any bash command after the test block resolves the problem, such as "shift" or "echo ''". Rewriting with 'if []; then' blocks provides a cleaner syntax and also resolves the failure. (From OE-Core rev: 5857516404411040598b69c85d184ccdfc0af2e0) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* distro_tracking_fields.inc: add cdrtools recipeScott Garman2011-04-281-0/+11
| | | | | | | (From OE-Core rev: be3c2c8a5e16d392ff7b9910fa0124da09e4c72e) Signed-off-by: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cdrtools: recipe and patch cleanupScott Garman2011-04-283-9/+28
| | | | | | | | | | | | | * Recipe cleanup, added missing metadata fields and fixed whitespace issues * Added Upstream-Status to patches * Confirmed that CVE-2003-0655 does not apply to this recipe as rscsi is not packaged (From OE-Core rev: f7c35ad6267c7dfd37bad9c7521488c329f879b5) Signed-off-by: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python: add missing cytpes modulesSaul Wold2011-04-282-1/+60
| | | | | | | | | | | | | Contributed by Martin Jansa via OE Fixes [YOCTO #1003] (From OE-Core rev: 2870697f08c171f455dbba03dd529b8c4cf11937) Signed-off-by: Antonio Ospite <ospite@studenti.unina.it> 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>
* linux-tools.inc: Dummify do_compile_perf and do_install_perf for uclibcKhem Raj2011-04-281-4/+13
| | | | | | | | | | Perf wants elfutils and elfutils on uclibc does not work due to its usage of obstack_printf functionality missing from uclibc. (From OE-Core rev: 8c2154fd5be3b7a633d87a23a1beffe9ce45c123) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* attr: Fix compilation on uclibcKhem Raj2011-04-282-3/+5
| | | | | | | | | | | It needs -lintl added to LDFLAGS for uclibc inherit gettext class instead of adding gettext to DEPENDS directly (From OE-Core rev: 53f421bd2a7dc4caf8cbf4ea1b04cf00ea158b2c) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xorg-lib: inherit gettext class instead of adding gettext to DEPENDS directlyKhem Raj2011-04-283-4/+7
| | | | | | | (From OE-Core rev: ee1be44976fcb8d584fee5f5c30f4f95abec76ed) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* perl_5.12.2.bb: Undefine features not found in uclibcKhem Raj2011-04-281-0/+16
| | | | | | | (From OE-Core rev: 75fea9d4064985de26316021e0fc4fd81fa341ef) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* elfutils_0.148.bb: Fix compilation issues on uclibcKhem Raj2011-04-282-2/+27
| | | | | | | | | | * Add -luargp and -lintl to linker flags * __mempcpy is not there on uclibc so define it to mempcpy (From OE-Core rev: a991226ff160c20fd7a03fe3b53b36389d3ff1f4) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libiconv: update from 1.9.2 -> 1.11.1Khem Raj2011-04-284-21/+102
| | | | | | | | | | | | | | 1.11.1 was the last LGPLv2 release shared_preloadable_libiconv_linux.patch is needed to make libtool 2.4 happy Autoconf patch is similarly made to point m4 directory and update to newer autoconf (From OE-Core rev: aab85d9003afa544f67a9573692683f36f9e44d0) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sstate.bbclass: Reduce SSTATE_MANIFESTS assignment to be weakKhem Raj2011-04-281-1/+1
| | | | | | | | | | | Distributions can then override this variable if needed useful e.g. when building uclibc/eglibc both using same tmpdir (From OE-Core rev: 839e6e7f3717cc69cf8fc5b1c51bac63ec00655e) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>