summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* qt4x11.bbclass: Using BPN instead of PN.Lianhao Lu2011-08-051-1/+1
| | | | | | | [YOCTO #1335] Using BPN instead of BP to decide the DEPENDS content for multilib cases. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
* tcp-wrappers: Using ${PN} in PACKAGES.Lianhao Lu2011-08-051-3/+3
| | | | | | | | | [YOCTO #1334] Using ${PN} instead of tcp-wrappers in PACKAGES and FILES_*, since the FILES_tcp-wrappers would be overwritten by FILES_${PN} when the variable name gets expansioned. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
* SRC_URI: Using BPN instaed of PN.Lianhao Lu2011-08-052-3/+3
| | | | | | | | [YOCTO #1333] In multilib cases, PN has the prefix of MLPREFIX. It is not correct to use PN in SRC_URI. We should use the pruned BPN instead. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
* gtk-icon-cache: add hicolor-icon-theme to DEPENDSKoen Kooi2011-08-051-0/+2
| | | | | | | This fixes do_rootfs breaking because OE didn't resolve the RDEPENDS added with python Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* machine/include/arm/feature-arm-thumb: Allow thumb to be disabledRichard Purdie2011-08-051-1/+1
| | | | | | | | | The previous commit to this file meant thumb was always being turned on even when TUNE_FEATURES did not contain "thumb". This is clearly wrong and this patch corrects this so thumb options are no longer specified in that case. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* local.conf.sample: Comment out BBMASK by defaultRichard Purdie2011-08-051-1/+1
| | | | | | | This means we can set defaults in layers or other configurations without the default user config masking it out. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel,module-base.bbclass: Improve KERNEL_LD & KERNEL_AR variablesNitin A Kamble2011-08-052-3/+3
| | | | | | | | | | | KERNEL_LD was using ${LD} in it's definition, which is not correct for different ABIs such as x32 or i386 on x86_64 machine. This brings it into sync with the corresponding gcc settings, likewise the same with the KERNEL_AR variable. [RP: Updated commit message] Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libzypp: Increase the size of the arch compat tableMark Hatle2011-08-054-57/+113
| | | | | | | | | | | | | | Fix [YOCTO #1313] Increase the size of the arch compat table to 30 entries. Also cleanup a few things related to Poky -> OE name changing. Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Fixed up arm patch Signed-off-by: Saul Wold <sgw@linux.intel.com>
* linux-yocto_3.0: Fix SRC_URI to use yoctoproject.orgSaul Wold2011-08-051-1/+1
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* dpkg: Update to use perlnativeSaul Wold2011-08-052-2/+4
| | | | | | [YOCTO #1298] Signed-off-by: Saul Wold <sgw@linux.intel.com>
* image-mklibs.bbclass: Utilize ${base_libdir} instead of static /libKumar Gala2011-08-051-4/+4
| | | | | | We might redefine ${base_libdir} from being set to just /lib. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
* image-mklibs.bbclass: Add powerpc64 arch supportKumar Gala2011-08-051-0/+3
| | | | | | powerp64 dynamic loader is 'ld64.so.1'. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
* gcc-4.6: Add support for the e5500 PowerPC coreKumar Gala2011-08-052-1/+467
| | | | | | | Implements basic e5500 enablement in gcc, with a scheduler, -mcpu flag, etc... Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
* tune/arch-powerpc64: include arch-powerpc.inc to keep things in syncKumar Gala2011-08-051-0/+4
| | | | | | | | Added a DEFAULTTUNE setting and included arch-powerpc.inc. This way we pick up the changes to TUNE_PKGARCH and things should be kept more in sync going forward. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
* prelink: Add lib64 dirs to prelink.confKumar Gala2011-08-052-5/+5
| | | | | | Handle multlib or cases that baselib is lib64. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
* libproxy: utilize libdir when configuredKumar Gala2011-08-051-2/+2
| | | | | | | Pass $libdir through when we configure to support a location other than /lib. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
* libmusicbrainz: utilize base_libdir when configuredKumar Gala2011-08-052-2/+24
| | | | | | | | Pass $libdir through when we configure to support a location other than /lib. We also have to tweak the cmake files to allow $libdir to even be set. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
* coreutils: Fix build on uclibcKhem Raj2011-08-052-2/+35
| | | | | | | | | coreutils has getloadavg.m4 of its own. So we need to make sure that we remove the portions which look into hardcoded /usr/local/lib paths. These tests are only for AIX so we dont lose much Signed-off-by: Khem Raj <raj.khem@gmail.com>
* autoconf: Remove code checking for hardcoded /usr/localKhem Raj2011-08-052-1/+31
| | | | | | | | | | | This code is only relevant for AIX and causes problems with OE QA sniffer which detects -L/usr/local/lib on linker commandline during cross compile and rightly barfs This only happens when getloadavg() is not found in libc so we do not reach that code with eglibc but only with uclibc Signed-off-by: Khem Raj <raj.khem@gmail.com>
* autoconf: Remove patch=1 from SRC_URIKhem Raj2011-08-052-11/+12
| | | | | | | | | | | | | | Edit summary field s/produced/produce/ Fix the license related warning WARNING: autoconf-native: No generic license file exists for: GPLv2|GPLv3 at /b/openembedded-core/meta/files/common-licenses WARNING: autoconf-native: There is also no SPDXLICENSEMAP for this license type: GPLv2|GPLv3 at /b/openembedded-core/meta/files/common-licenses Signed-off-by: Khem Raj <raj.khem@gmail.com>
* buildstats.bbclass: Adding disk io measurementBeth Flanagan2011-08-051-78/+142
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds disk-io statistics functionality on a build and per-task basis. It pulls measurements for whatever partition TMPDIR exists on. This data could be off if SSTATE_DIR and DL_DIR exist on a different partition/volume. Notes on what this pulls: ReadsComp: Total number of reads complete ReadsMerged: Total number of adjacent reads merged SectRead: Total number of sectors read TimeReads: Total number of m/s spent reading WritesComp: Total number of writes completed SectWrite: Total number of sectors written TimeWrite: Total number of m/s spent writing IOinProgress: Total amount of IO in progress at the time of we look at /proc/diskstats. TimeIO: Total number of m/s spent doing IO WTimeIO: Weighted time doing I/O. From iostats.txt: "This field is incremented at each I/O start, I/O completion, I/O merge, or read of these stats by the number of I/Os in progress (field 9) times the number of milliseconds spent doing I/O since the last update of this field. This can provide an easy measure of both I/O completion time and the backlog that may be accumulating." Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com>
* toolchain-scripts & other classes: add TARGET_LD_ARCH & TARGET_AS_ARCH varsNitin A Kamble2011-08-058-13/+41
| | | | | | This is comming from x32 need to pass special parameters to ld & as. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* eglibc: Fix patch merge breakageRichard Purdie2011-08-041-538/+538
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Various siteinfo: Drop rp-pppoe variablesTom Rini2011-08-047-22/+0
| | | | | | | These variables were wrong on big-endian machines and this recipe is now handled in meta-oe (along with the siteinfo files). Signed-off-by: Tom Rini <tom_rini@mentor.com>
* siteinfo: Add posix_getpwuid_r posix_getgrgid_r posix_getpwnam_r to uclibcTom Rini2011-08-042-1/+5
| | | | | | | This comes from oe.dev and while at this, drop from powerpc-linux as the common-libc files set them. Signed-off-by: Tom Rini <tom_rini@mentor.com>
* site/common-linux: Add ac_cv_file__dev_zero=yesTom Rini2011-08-041-0/+3
| | | | Signed-off-by: Tom Rini <tom_rini@mentor.com>
* Various siteinfo files: Consolidate va_copy/__va_copy/va_val_copyTom Rini2011-08-0414-106/+63
| | | | | | | | | Providing va_copy / __va_copy come down to the libc. va_val_copy comes down to the architecture. Unfortunately it's assumed true if not set, so we need to make sure to set this to false for x86_64 where it is not true. Signed-off-by: Tom Rini <tom_rini@mentor.com>
* Various siteinfo files: Drop enca sectionTom Rini2011-08-042-6/+0
| | | | | | | As part of re-syncing with oe.dev, these tests aren't needed with the oe.dev recipe of enca now. Signed-off-by: Tom Rini <tom_rini@mentor.com>
* Various siteinfo files: Consolidate ac_cv_func_getaddrinfoTom Rini2011-08-0411-12/+2
| | | | | | | | This is a libc feature, move there. Drop the ipsec-tools specific test as ipsec-tools (a) assumes fine on cross-compile and (b) doesn't support buggy getaddrinfo now. Signed-off-by: Tom Rini <tom_rini@mentor.com>
* Various site files: Drop monotone/monoTom Rini2011-08-049-34/+0
| | | | | | Not in oe-core nor meta-oe and based on oe.dev, possibly incomplete. Signed-off-by: Tom Rini <tom_rini@mentor.com>
* tcl: Add tcl_cv_api_serial to siteinfoTom Rini2011-08-041-0/+3
| | | | | | This comes from oe.dev which had this set for arm-linux only. Signed-off-by: Tom Rini <tom_rini@mentor.com>
* sudo: Drop sudo_cv_uid_t_len from site filesTom Rini2011-08-048-23/+1
| | | | | | | We were just setting this to the assumed default. If anything, this belongs in the libc files if we must set it. Signed-off-by: Tom Rini <tom_rini@mentor.com>
* eglibc_2.13: Add support for handling sqrt & sqrtf on powerpcKumar Gala2011-08-042-1/+540
| | | | | | | Some of powerpc's dont support the fsqrt[s] instructions so we need an implementation of the library functions for those processors. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
* eglibc: fix build for armv4 machinesDmitry Eremin-Solenikov2011-08-044-0/+52
| | | | | | | | | | | | | | eglibc builds for arm-eabi unconditionally enables the libc-do-syscall.S file, which contains thumb assembly. It's unused in arm-eabi-nothumb case, so just ifdef the actual code. V2: use the patch from oe.dev. The patch is submitted to sourceware bugzilla by Khem Raj back in October of 2010, but the status is still UNCONFIRMED and the patch isn't commited. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Cc: Khem Raj <raj.khem@gmail.com>
* libxt: Add depends for util-linux and libxcbSaul Wold2011-08-041-1/+1
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* glibc: Remove unused versionSaul Wold2011-08-041-1/+0
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* connman_test.sh: Rework for busybox 'ps'Tom Rini2011-08-041-4/+4
| | | | | | | | | | This script has two problems today. First, it does 'ps -ef cmd' in failure which real ps doesn't grok and busybox ps just ignores the argument on. Switch that to 'ps -ef'. Second, busybox ps -o doesn't understand cmd but does understand comm. Using comm lets us simplify the test logic as well, so switch to that. Signed-off-by: Tom Rini <tom_rini@mentor.com>
* kernel.bbcalss: Added do_savedefconfig task.Noor, Ahsan2011-08-041-0/+6
| | | | | | * Added do_savedefconfig task to kernel.bbclass. Signed-off-by: Noor, Ahsan <noor_ahsan@mentor.com>
* xserver-nodm-init: Fix X start failure on some platformZhai Edwin2011-08-041-4/+2
| | | | | | | | | | | sudo is used to run rootless X in xserver-nodm, and start to fail with "xf86OpenConsole: Cannot open /dev/tty0" error after upgrade to 1.8.1. sudo seems wait for some resource that is unavailable in early phase of booting. This patch swith to "su" for rootless X starting as a fix. [YOCTO #1211] got fixed Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* apr-util: Upgrade to 1.3.12Zhai Edwin2011-08-041-4/+8
| | | | | | | | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Merged with ${BPN} change Signed-off-by: Saul Wold <sgw@linux.intel.com>
* apr: Upgrade to 1.4.5Zhai Edwin2011-08-042-33/+7
| | | | | | | | | | Remove buildconf_fix.patch as already in upstream. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Merged with ${BPN} change Signed-off-by: Saul Wold <sgw@linux.intel.com>
* parted: Upgrade to 3.0Zhai Edwin2011-08-043-2/+2
| | | | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* gpgme: Upgrade to 1.3.1Zhai Edwin2011-08-042-5/+5
| | | | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* libassuan: Upgrade to 2.0.2Zhai Edwin2011-08-041-2/+2
| | | | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* libsoup-2.4: Upgrade to 2.34.2Zhai Edwin2011-08-041-2/+2
| | | | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* lighttpd: Upgrade to 1.4.29Zhai Edwin2011-08-041-3/+3
| | | | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* kernel,cml1.bbclass: Move menuconfig to cml1Noor, Ahsan2011-08-042-15/+12
| | | | | | * The menuconfig target exists in places other than the kernel that use kernel style config. Signed-off-by: Noor, Ahsan <noor_ahsan@mentor.com>
* environment files: Added and unified version related variables.Lianhao Lu2011-08-044-3/+6
| | | | | | | | | | [YOCTO #1306] Fixing. Added and unified version related variables in all environment files generated by package meta-toolchain, meta-ide-support, meta-environment-xxx. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
* binutils: Add support for powerpc e5500 coreKumar Gala2011-08-042-1/+114
| | | | | | | | Add powerpc e5500 core support to binutils so its recognized by assember, etc. The e5500 is a 64-bit core from Freescale utilized in the P5020 SoC. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
* gtk-icon-cache bbclass: only add runtime dependencies on hicolor-icon-theme ↵Koen Kooi2011-08-041-2/+6
| | | | | | | | when installing icons Tested with gnome-icon-theme and libsoup recipes on angstrom. Signed-off-by: Koen Kooi <koen@openembedded.org>