summaryrefslogtreecommitdiff
path: root/meta/conf
AgeCommit message (Collapse)AuthorFiles
2012-01-03distro_tracking_fields: update the info for this round of package upgradeShane Wang1
The update includes: - update the info for linux-firware, quota, watchdog, hdparm, libomxil, oprofileui, puzzles, and matchbox-wm-2 - add one more recipe info for stat, which is depended by hdparm - correct the wrong info for connman-gnome, which is updated by last manual check in error. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-03distro_tracking_fields: update the info for recipe upgrade.Shane Wang1
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-03distro_tracking: Updated for Upgrades and Manual Check DatesSaul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-02distro_tracking_fields: update the info for recipe upgrade.Shane Wang1
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02distro_tracking_fields: update the info for recipe upgrade.Shane Wang1
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02distro_tracking_fields: update the info for recipe upgradingShane Wang1
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02distro_tracking_fields: take the ownership of Mei Lei'sShane Wang1
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02distro_tracking_fields: update the info for the manual check list (2011/12/24)Shane Wang1
update the information for the manual check list after checking the upstream on Dec 24, 2011. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02base.bbclass: Allow buildstats to be optionally suppliedMark Hatle1
Buildstats should be allowed to be optionally enabled. It's recommended that it be enabled via the USER_CLASSES setting. Alternatively it could be enabled via the INHERIT_DISTRO or similar mechanism. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
2012-01-02prelink: update to latest git versionScott Garman1
New version includes: 2011-12-08 Mark Hatle <mark.hatle@windriver.com> * rtld/rtld.c: Fix an issue where missing objects would trigger an assert in dl-version.c * rtld/rtld.h: Add _dl_new_object prototype * rtld/rtld.c: Add support for $ORIGIN, $PLATFORM and $LIB. Note: $PLATFORM = "" These fixes are needed to prevent prelink-rtld from crashing when running the new unsafe-references-in-binaries QA test. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2011-12-23Change -mno-thumb to -marmKen Werner2
Recent versions of the GCC reject the -mno-thumb option. In order to prevent the compiler from generating code for the Thumb instruction set the -marm switch should be used instead. For details see GNU bug #47930. Signed-off-by: Ken Werner <ken.werner@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-22distro_tracking_fields: Update curl info and fix other recipes' typo issuesMei Lei1
Signed-off-by: Mei Lei <lei.mei@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-22arch-powerpc: set PACKAGE_EXTRA_ARCHSIlya Yanok4
Set PACKAGE_EXTRA_ARCHS for the generic tunes ("powerpc" and "powerpc-nf") thus allowing to use them instead of tuning to the specific CPU. Signed-off-by: Ilya Yanok <yanok@emcraft.com>
2011-12-21distro_tracking: Mark Upgrade InfoSaul Wold1
Updated the following: - libdrm - texi2html - mc - libidn - augeas - python-pycairo Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-21distro tracking: update man-pages, gts-plugin-bluetooth, usbutils,Saul Wold1
and libcap Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-21multilib.conf: Enable shadow-sysroot and libffiRichard Purdie1
Enable these two core dependencies for multilib builds, fixing multilib build failures that were occurring. I've checked and the recipes are multilib capable. [YOCTO #1835] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-21distro_tracking_fields: add information for ltpJiajun Xu1
Add information for recipe ltp, which is ported from OE. Signed-off-by: Jiajun Xu <jiajun.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-16bitbake.conf, core-image-minimal-initramfs: add INITRAMFS_FSTYPESDmitry Eremin-Solenikov1
Initramfs images don't benefit from usual IMAGE_FSTYPES overrides. The only sane values for them are "cpio.XXX". If IMAGE_FSTYPES is set to include 'live', building core-image-minimal-initramfs can result in build error, if the image is built before the kernel. To stop initramfs images from responding on IMAGE_FSTYPES settings, but still allow users/developers to override defaults (e.g. to generate "cpio.lzma" initramfs), introduce INITRAMFS_FSTYPES variable, by default set to "cpio.gz". Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-15distro_tracking_fields: update cogl and clutterJoshua Lock1
Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-12-13conf/machine/include/arm add extra MACHINEOVERRIDES like x86 doesMartin Jansa5
* motivated by this NAK http://patchwork.openembedded.org/patch/15777/ and today's discussion on #yocto I hope it's worth it to send this RFC Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-12x86 tune: fix TUNE_PKGARCH definition for proper PACKAGE_ARCHNitin A Kamble2
rpmbuild can not handle the PACKAGE_ARCH of these kinds: x86_64-x32, core2-64, core2-64-x32 With these kinds of PACKAGE_ARCH the --target parameter of rpmbuild becomes like: core2-64-x32-poky-linux-gnux32 ; And rpmbuild extracts %_target (arch) wrongly as core2 generating these kinds of rpms with incorrect filenames: zip-3.0-r0.core2.rpm So this commit fixes the issue by making PACKAGE_ARCH like this: x86_64_x32, core2_64, core2_64_x32 Now --target parameter of rpmbuild becomes like: core2_64_x32-poky-linux-gnux32 ; And rpmbuild extracts %_target (arch) correctly as core2_64_x32 generating these kinds of rpms with correct filenames: zip-3.0-r0.core2_64_x32.rpm Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2011-12-12bitbake.conf: remove texinfo-native from ASSUME_PROVIDEDSaul Wold1
We need to build texinfo-native to get and install the makedoc tool [YOCTO #1664] Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-08[YOCTO #1776] license: manifest and license pathElizabeth Flanagan1
This is a fairly large commit, so I want to step through some of what this accomplishes: 1. Additional licenses I've added/modified/corrected some of the common licenses within OE-core in prep. for a major license audit. Most of these are in SPDX format. A few, there is no OSI equivalent. 2. Additional SPDX mappings I've added some additional SPDX mappings to account for removing some duplicate licenses. (ie GPL-2 and GPL-2.0 were the same) I've also remapped a few things to more accurately reflect what they should be pointing at. Note: Artistic/LGPL/GPL/MPL. Quite a few LICENSE fields list these licenses. They make no sense and need auditing. In a future commit I have some fixes to particularly egregious LICENSE fields, but a full audit should be done. I've listed to obvious candidates at: https://wiki.yoctoproject.org/wiki/License_Audit 3. License manifest We now have a license manifest generation that occurs in rootfs for everything BUT .deb. This requires the changes Paul Eggleton has done to rootfs_* particularly the list_installed_packages function. The manifest is accurate during a parallel bitbake now (Weee!) and is prime for my planned SPDX format manifest during the next period. 4. License manifest on image. We also want the ability to add licenses to the image. This functionality is also in base-files and will be stripped out in my next commit. The manifest is not added by default and is a two var setting in license.conf: If I want *just* the manifest on the image (small) then I set: COPY_LIC_MANIFEST = "1" This copies the manifest to: /usr/share/common-licenses/license.manifest If I want the actual PKG license text on the image (much larger) I need to set both both COPY_LIC_MANIFEST and COPY_LIC_DIRS in license.conf. This will create: /usr/share/common-licenses/(package name)/(licenses in LIC_SRC_URI) Word of warning. This can be larger than wanted depending on image and is probably ripe for linking licenses, but I ran out of time this week to get that done. 5. Custom License search path. We now have the ability to add licenses to the build without touching common-licenses. This is set via license.conf: LICENSE_PATH += "/path/to/custom/licenses" You want to make sure the license is unique. license.bbclass picks the first license it finds. Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com>
2011-12-08bitbake.conf/image.bbclass: Ensure images use the correct passwd/group filesRichard Purdie1
We need pseudo to use the rootfs passwd/group files belonging to the rootfs when building images. This patch ensures that we use the rootfs files instead of those in the sysroot which can lead to incorrect file ownership issues. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-08distro_tracking_fields.inc: Update dropbear,iproute2,net-tools tracking ↵Mei Lei1
information. Signed-off-by: Mei Lei <lei.mei@intel.com>
2011-12-06conf/machine: Don't poke around providers which aren't machine specific/safeRichard Purdie4
Machines shouldn't be poking around PREFERRED_PROVIDERS which aren't machine specific or at least machine safe. Kernels are machine specific and the xserver is selectable. libx11 and mesa are now really a distro choice and machine configurations shouldn't be poking around them as it just leads to corruption, conflicts and confusion. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-06distro_tracking: fix manual entriesSaul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-06gcc: Backport patch from trunk to fix ICE seen on armv7 with mesa-xlibKhem Raj1
This patch is a backport of http://patchwork.ozlabs.org/patch/110517/ Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-06tcmode-default: Remove pinning u-boot-mkimage-native to non-existing versionKhem Raj1
2009.08 does not exist anywhere and ppc builds complain about it. Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-06default-distrovars: missing checksums should raise an errorJoshua Lock1
Set BB_STRICT_CHECKSUM in default-distrovars so that an error is raised if no checksum is set. Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-05bitbake.conf: add default PRINC 0 to be able to increment itMartin Jansa1
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-02distro_tracking_fields.inc: update the infoDexuan Cui1
They are pixman libxrandr lzo libxfont libxcursor xcb-util inputproto liberation-fonts Signed-off-by: Dexuan Cui <dexuan.cui@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-02distro-tracking: Update info after last upgradeZhai Edwin1
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
2011-12-02distro tracking updatesSaul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-12-01classes, conf: Exclude native and nativesdk recipes from libc specific overrideKhem Raj2
Based on suggestions from RP libc-uclibc and libc-glibc overrides are for denoting system C library in use on the target and not for the host therefore we make sure that the override only takes effect for target recipes only. Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-01distro_tracking_fields: update gthumb and claim some recipesJoshua Lock1
Update tracking info for gthumb and add untracked recipes mx, json-glib and xdg-utils - I'm volunteering to maintain these. Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-01distro_trakcing_fields: update for glib, telepathy-idle, etcDongxiao Xu1
- glib-2.0 - telepathy-glib - telepathy-idle - telepathy-mission-control Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-30distro-tracking-fields: update entries for clutter recipesJoshua Lock1
Tidy up entries for clutter related recipes * Update to 1.8 namespace * Move to same section of file for easier maintenance as a unit * Update for recent recipe upgrades * Assign myself as maintainer Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-11-30clutter-box2d: drop unbuildable clutter-box2d-1.6_0.10.0Joshua Lock1
It's very old at this point and doesn't build with recent clutter Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-11-30multilib.conf: remove clutter-1.6 and add clutter-1.8Joshua Lock1
clutter-1.8 is the future here. Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-11-30Distro Tracking: Update Ownership and Update DatesSaul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-29distro-tracking: update information for binutils & libtoolNitin A Kamble1
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2011-11-29binutils: upgrade from 2.21.1a to 2.22Nitin A Kamble1
And rebase the patches to the newer source code This patch is upstream hence deleting it from the recipe. binutils/110-arm-eabi-conf.patch Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2011-11-29distro_tracking: update tracking fields for gettext and eds-toolsWenzong Fan1
Add maintainer and update manual_check_date, status fields. Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
2011-11-29distro_tracking_fields: update the statusXiaofeng Yan1
directfb to 1.4.15 xorg-xserver-lite to 1.11.1 libx11-diet to 1.4.4 Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
2011-11-29distro_tracking: Update manual check dates (readline, gcrypt)Saul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-29default-distrovars: Define SDK_VERSION and DISTRO_VERSIONKhem Raj1
runqemu scripts check for them and when using just oe-core these are not defined anywhere Signed-off-by: Khem Raj <raj.khem@gmail.com>
2011-11-29pulseaudio: update to 1.1, delete 0.9.xKoen Kooi1
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-11-26getVar/setVar cleanupsRichard Purdie1
Complete the bb.data.getVar/setVar replacements with accesses directly to the data store object. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-25Nothing uses USERNAME, remove it - can cause sstate-cache conflictsMatthew McClintock1
USER is the correct variable to use, also this can affect sstate cache as well. Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>