summaryrefslogtreecommitdiff
path: root/meta/conf
AgeCommit message (Collapse)AuthorFiles
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>
2011-11-24bitbake.conf: We only care about the absolute value of baselibRichard Purdie1
The value of baselib can be constructed in several different ways and from a sstate perspective we don't care how it was made up, we only care what the final value is. This uses the new functionality in bitbake to ensure we only include the value of baselib and not any intermediate dependencies. [YOCTO #1583] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-24eglibc_2.13: update SRCREVKang Kai1
Update eglibc 2.13 SRCREV to 15508, just to sync with upstream Remove glibc_bug_fix_12454.patch, because it is already merged. Signed-off-by: Kang Kai <kai.kang@windriver.com>
2011-11-24bitbake.conf: Set BB_CONSOLELOG so we log console messages by defaultRichard Purdie1
The console log is often helpful for debugging issues. Difficult to reproduce bugs would benefit from a log being generated by default as it may be difficult to come by after the fact. Log to ${TMPDIR}/cooker.log.${DATETIME} by default. [YOCTO #1771] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-23distro_tracking_fields: Update after Manual CheckSaul Wold1
Checked upstream for updates of the following packages: - libiconv - libxml2 - sysstat - tcp_wrapper - texinfo Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-23distro_tracking: update manual checks for recipesShane Wang1
Updating manual checks for jpeg, tinylogin, eggdbus, setserial, acpid, menu-cache, x11vnc, etc. Signed-off-by: Shane Wang <shane.wang@intel.com>
2011-11-23distro_tracking: update manual checks for recipesShane Wang1
Updating manual checks for minicom, libtirpc, opkg, which, quota, rpcbind, strace, wireless-tool, irda-utils, libical, flac, libomxil, libsamplerate0, etc. Signed-off-by: Shane Wang <shane.wang@intel.com>
2011-11-23distro_tracking: update manual checks for recipesShane Wang1
Updating manual checks for hdparm, screen, watchdog, freetype, oprofile, and tcf-agent. Signed-off-by: Shane Wang <shane.wang@intel.com>
2011-11-23distro_tracking: update manual checks for various recipesScott Garman1
Updating manual check dates for the following recipes: tar, libpng, expat, dosfstools, e2fsprogs Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2011-11-23distro_tracking: Refect Recipe Updates & StatusSaul Wold1
* libnl - NO_UPDATE_REASON due to incompatibility * zlib - has wrong version in update list (121) * libtasn1 - Update to 2.10 * pkgconfig - NO_UPDATE_REASON due to removal of glib-conf * file - update to 5.09 * dchp - New version is 4.2.3, not updated yet. * tiff - NO_UPDATE_REASON wait until 4.0.0 * gobject-interopsectio - NO_UPDATE_REASON can not cross-build * gnu-config - Udpate to git HEAD - requires ASSUME_PROVIDED += "git-native" Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-17bitbake.conf: add a couple explicit vardepsChris Larson1
Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-17update distro tracking recipe informationNitin A Kamble1
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-16update-alternatives: Various fixesRichard Purdie1
dpkg-native's update-alternatives is broken for offline work so don't install it. Also list update-alternatives in the multiprovider whitelist to avoid unwanted multiple provider warnings when multiple package backends are enabled. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-16bitbake.conf: Update ASSUME_PROVIDEDSaul Wold1
* Remove an obsolete comment about mercurial * Remove cvs-native since we have removed cvs SRC_URIs Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-15bitbake.conf: Correct svn-native -> subversion-native so we use consistent namesRichard Purdie1
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-10bitbake.conf: Unload pseudo when its not required for a given taskRichard Purdie1
This yields a small performance boost due to the lack of the preload overhead on each task execution. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-10Convert to use direct access to the data store (instead of bb.data.*Var*())Richard Purdie4
This is the result of running the following over the metadata: sed \ -e 's:bb.data.\(setVar([^,()]*,[^,()]*\), *\([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,()]*,[^,()]*,[^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^() ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-10Distro_tracking: Update Manual Check DateSaul Wold1
Checked the following Upstreams: apt libaio sysstat unzip zip linexif boost libcheck ncurses sysfsutils util-linux - Offline lsb eds-tools libmad lame glew squashfs-tools Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-11-10local.conf.sample.extended: Fix bug 1674Xiaofeng Yan1
[YOCTO #1674] local.conf.sample.extended: An image based on gtk+-directfb don't need x11 for DEFAULT_FEATURES Remove "x11" from DEFAULT_FEATURES and add "directfb" to it because someone could don't need x11 in their project, perhaps gtk over directfb will meet his reqirement. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
2011-11-10gconf: add upstream GNOME gconf 3.2.3 and drop gconf-dbusJoshua Lock2
The D-Bus backend has been integrated into upstream GConf so we can switch to upstream and drop gconf-dbus. I've gone for a release in the 3.2 series as we disable Gtk+, and therefore are not impacted by the gtk+3 changes, and the D-Bus backend was unstable before this release. Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-11-08Add new IMAGE_CLASSES variable for classes for image generationMatthew McClintock1
Allows us to import classes only for images and not to the global namespace Signed-off-by: Matthew McClintock <msm@freescale.com>
2011-11-08distro_tracking_fields.inc: Modify the status of qmmpXiaofeng Yan1
update qmmp to 0.5.2 Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
2011-11-08distro_tracking_fields.inc: update to libarchive to 2.8.5Xiaofeng Yan1
Change the status of libarchive. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
2011-11-08pseudo: Uprev pseudo to version 1.2Mark Hatle1
This adds a new feature, PSEUDO_UNLOAD, which can be used to eliminate overhead of LD_PRELOAD when no longer necessary. Also the, clone(2), support on Linux has been updated to resolve some potential defects in the previous implementation. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
2011-11-07distro_tracking_fields: updates for sudo, mtools, grep, and opensshScott Garman1
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2011-11-04bitbake.conf: Drop remaining TERMCMD pieces and document OE_TERMINAL usage ↵Richard Purdie2
instead Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> [Yes, this one is against meta-yocto, I'll fix it to apply the same change to OE-Core's local.conf.sample in the final version]
2011-11-02distro_tracking_fields: Update the Month to 'MMM'Wenzong Fan1
Use format 'MMM' instead of spell out a Month. Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-01linux-libc-headers: provide 3.0.x and 3.1 headersBruce Ashfield1
Provide both a 3.0.x and a 3.1 set of headers to the toolchain. Compatibility is maintained with older 2.6 headers by creating a new variable that changes the SRC_URI based on the major version number of the kernel. Built and booted with 2.6.37.2, 3.0.8 and 3.1 linux-libc-headers. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-01package_ipk: There is no longer any need to force owners/groups to rootRichard Purdie1
Since the packaging process is run under pseudo, the default user is now root so there is no longer any need to hardcode this. Also take this opportunity to move the variable to package_ipk.bbclass since this is the only user of it. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-11-01distro_tracking_fields.inc: standardize date formatScott Garman1
Convert date formats to strftime format %b %d, %Y (e.g, Jan 01, 1970) Note: dates posted as MM/YYYY (without day info) were converted to become the first of the month. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2011-11-01bitbake.conf: drop STAGING_PYDIRMartin Jansa1
* seems unused in oe-core Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-31distro_tracking: polkit, libsndfile, etcDongxiao Xu1
polkit libsndfile1 neon netbase libogg telepathy-idle telepathy-glib telepathy-mission-control iptables Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
2011-10-31distro_tracking_fields: update packages tracking fieldsWenzong Fan1
Update packages tracking fields including ccache, chkconfig. Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
2011-10-31python, python-native: upgrade from 2.6.6 to 2.7.2Nitin A Kamble1
Rebased these patches to the newer code modified: python-native/nohostlibs.patch modified: python/01-use-proper-tools-for-cross-build.patch modified: python/06-avoid_usr_lib_termcap_path_in_linking.patch modified: python/06-ctypes-libffi-fix-configure.patch modified: python/multilib.patch Deleted these patches are the are now upstream deleted: python/02-remove-test-for-cross.patch deleted: python/security_issue_2254_fix.patch Added this patch to python-native new file: python-native/multilib.patch Updated site config file for python modified: ../../site/common-linux : add ac_cv_have_long_long_format for python avoid this error in python: Include/pyport.h:243:13: error: #error "This platform's pyconfig.h needs to define PY_FORMAT_LONG_LONG" Updated default python version modified: ../../conf/distro/include/default-versions.inc Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-24default-providers: switch virtual/libgl from mesa-xlib to mesa-driMartin Jansa1
* to match default virtual/xserver Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-24tcmode-default.inc: Add TRANSLATED_TARGET_ARCH suffix to binutils-cross-canadianKhem Raj1
PN for binutils-cross-canadian is binutils-cross-canadian-${TRANSLATED_TARGET_ARCH} so thats what we should use for PREFERRED_VERSION Signed-off-by: Khem Raj <raj.khem@gmail.com>
2011-10-20distro-tracking-fields: update fields for tzdata and gst-plugins-goodJoshua Lock1
These recipes were each updated and so should their tracking data be. Signed-off-by: Joshua Lock <josh@linux.intel.com>
2011-10-20distro_tracking_fields: update packages tracking fieldsKang Kai1
Update packages tracking fields including ghostscript, libsdl, libxml-sax-perl and liburi-perl. Signed-off-by: Kang Kai <kai.kang@windriver.com>
2011-10-20distro-tracking: update data for some toolchain recipesNitin A Kamble1
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2011-10-20x86 tune files: set baselib for x32 tune as libx32Nitin A Kamble2
This ensures that on a multilib system the two executable formats don't conflict. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2011-10-17Distro Tracking: Fix datesSaul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-17default-provider: also define a default provider for gconf-nativeDmitry Eremin-Solenikov1
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-15arch-ia32: Add a generic x86 override (instead of i{3|4|5|6}86 and so on)Richard Purdie1
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-15bitbake.conf: Use TRANSLATED_TARGET_ARCH in OVERRIDES since any variable ↵Richard Purdie1
with _ in it isuseless there (e.g. x86_64) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-14bitbake.conf Exclude MACHINE from MACHINEOVERRIDE variable dependenciesRichard Purdie1
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-14distro_tracking_fields.inc: update qt4 related entriesOtavio Salvador1
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-14distro_tracking_fields.inc: Add maintainer for some packages without maintainerXiaofeng Yan1
Add the name of maintainer for the following packages: bind libx11-diet qmmp libarchive xserver-kdrive xserver-xf86-lite directfb Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
2011-10-14distro_tracking_fields: UpdatesSaul Wold1
Signed-off-by: Saul Wold <sgw@linux.intel.com>