summaryrefslogtreecommitdiff
path: root/meta/conf
Commit message (Collapse)AuthorAgeFilesLines
* Nothing uses USERNAME, remove it - can cause sstate-cache conflictsMatthew McClintock2011-11-251-1/+1
| | | | | | | | 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>
* bitbake.conf: We only care about the absolute value of baselibRichard Purdie2011-11-241-0/+1
| | | | | | | | | | | | 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>
* eglibc_2.13: update SRCREVKang Kai2011-11-241-0/+3
| | | | | | | 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>
* bitbake.conf: Set BB_CONSOLELOG so we log console messages by defaultRichard Purdie2011-11-241-0/+2
| | | | | | | | | | | | 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>
* distro_tracking_fields: Update after Manual CheckSaul Wold2011-11-231-15/+22
| | | | | | | | | | | Checked upstream for updates of the following packages: - libiconv - libxml2 - sysstat - tcp_wrapper - texinfo Signed-off-by: Saul Wold <sgw@linux.intel.com>
* distro_tracking: update manual checks for recipesShane Wang2011-11-231-15/+23
| | | | | | Updating manual checks for jpeg, tinylogin, eggdbus, setserial, acpid, menu-cache, x11vnc, etc. Signed-off-by: Shane Wang <shane.wang@intel.com>
* distro_tracking: update manual checks for recipesShane Wang2011-11-231-18/+30
| | | | | | 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>
* distro_tracking: update manual checks for recipesShane Wang2011-11-231-4/+9
| | | | | | Updating manual checks for hdparm, screen, watchdog, freetype, oprofile, and tcf-agent. Signed-off-by: Shane Wang <shane.wang@intel.com>
* distro_tracking: update manual checks for various recipesScott Garman2011-11-231-2/+6
| | | | | | | Updating manual check dates for the following recipes: tar, libpng, expat, dosfstools, e2fsprogs Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* distro_tracking: Refect Recipe Updates & StatusSaul Wold2011-11-231-16/+23
| | | | | | | | | | | | | | * 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>
* bitbake.conf: add a couple explicit vardepsChris Larson2011-11-171-1/+2
| | | | | Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* update distro tracking recipe informationNitin A Kamble2011-11-171-22/+27
| | | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* update-alternatives: Various fixesRichard Purdie2011-11-161-1/+1
| | | | | | | | | | | 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>
* bitbake.conf: Update ASSUME_PROVIDEDSaul Wold2011-11-161-4/+0
| | | | | | | | * 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>
* bitbake.conf: Correct svn-native -> subversion-native so we use consistent namesRichard Purdie2011-11-151-1/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake.conf: Unload pseudo when its not required for a given taskRichard Purdie2011-11-101-0/+1
| | | | | | | 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>
* Convert to use direct access to the data store (instead of bb.data.*Var*())Richard Purdie2011-11-104-24/+24
| | | | | | | | | | | | | | | 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>
* Distro_tracking: Update Manual Check DateSaul Wold2011-11-101-37/+57
| | | | | | | | | | | | | | | | | | | | | | | 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>
* local.conf.sample.extended: Fix bug 1674Xiaofeng Yan2011-11-101-0/+3
| | | | | | | | | | [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>
* gconf: add upstream GNOME gconf 3.2.3 and drop gconf-dbusJoshua Lock2011-11-102-3/+1
| | | | | | | | | | | 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>
* Add new IMAGE_CLASSES variable for classes for image generationMatthew McClintock2011-11-081-0/+6
| | | | | | | Allows us to import classes only for images and not to the global namespace Signed-off-by: Matthew McClintock <msm@freescale.com>
* distro_tracking_fields.inc: Modify the status of qmmpXiaofeng Yan2011-11-081-2/+6
| | | | | | update qmmp to 0.5.2 Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* distro_tracking_fields.inc: update to libarchive to 2.8.5Xiaofeng Yan2011-11-081-1/+4
| | | | | | Change the status of libarchive. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* pseudo: Uprev pseudo to version 1.2Mark Hatle2011-11-081-3/+3
| | | | | | | | | | 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>
* distro_tracking_fields: updates for sudo, mtools, grep, and opensshScott Garman2011-11-071-16/+16
| | | | Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* bitbake.conf: Drop remaining TERMCMD pieces and document OE_TERMINAL usage ↵Richard Purdie2011-11-042-28/+4
| | | | | | | | | 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]
* distro_tracking_fields: Update the Month to 'MMM'Wenzong Fan2011-11-021-4/+4
| | | | | | | 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>
* linux-libc-headers: provide 3.0.x and 3.1 headersBruce Ashfield2011-11-011-1/+1
| | | | | | | | | | | | 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>
* package_ipk: There is no longer any need to force owners/groups to rootRichard Purdie2011-11-011-4/+0
| | | | | | | | | 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>
* distro_tracking_fields.inc: standardize date formatScott Garman2011-11-011-298/+298
| | | | | | | | | 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>
* bitbake.conf: drop STAGING_PYDIRMartin Jansa2011-11-011-1/+0
| | | | | | | * seems unused in oe-core Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* distro_tracking: polkit, libsndfile, etcDongxiao Xu2011-10-311-33/+33
| | | | | | | | | | | | | | polkit libsndfile1 neon netbase libogg telepathy-idle telepathy-glib telepathy-mission-control iptables Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* distro_tracking_fields: update packages tracking fieldsWenzong Fan2011-10-311-0/+12
| | | | | | Update packages tracking fields including ccache, chkconfig. Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
* python, python-native: upgrade from 2.6.6 to 2.7.2Nitin A Kamble2011-10-311-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* default-providers: switch virtual/libgl from mesa-xlib to mesa-driMartin Jansa2011-10-241-1/+1
| | | | | | * to match default virtual/xserver Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* tcmode-default.inc: Add TRANSLATED_TARGET_ARCH suffix to binutils-cross-canadianKhem Raj2011-10-241-1/+1
| | | | | | | | 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>
* distro-tracking-fields: update fields for tzdata and gst-plugins-goodJoshua Lock2011-10-201-8/+8
| | | | | | These recipes were each updated and so should their tracking data be. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* distro_tracking_fields: update packages tracking fieldsKang Kai2011-10-201-0/+24
| | | | | | | Update packages tracking fields including ghostscript, libsdl, libxml-sax-perl and liburi-perl. Signed-off-by: Kang Kai <kai.kang@windriver.com>
* distro-tracking: update data for some toolchain recipesNitin A Kamble2011-10-201-17/+25
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* x86 tune files: set baselib for x32 tune as libx32Nitin A Kamble2011-10-202-2/+2
| | | | | | | 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>
* Distro Tracking: Fix datesSaul Wold2011-10-171-8/+8
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* default-provider: also define a default provider for gconf-nativeDmitry Eremin-Solenikov2011-10-171-0/+1
| | | | | Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* arch-ia32: Add a generic x86 override (instead of i{3|4|5|6}86 and so on)Richard Purdie2011-10-151-0/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake.conf: Use TRANSLATED_TARGET_ARCH in OVERRIDES since any variable ↵Richard Purdie2011-10-151-1/+1
| | | | | | with _ in it isuseless there (e.g. x86_64) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake.conf Exclude MACHINE from MACHINEOVERRIDE variable dependenciesRichard Purdie2011-10-141-0/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* distro_tracking_fields.inc: update qt4 related entriesOtavio Salvador2011-10-141-16/+16
| | | | | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* distro_tracking_fields.inc: Add maintainer for some packages without maintainerXiaofeng Yan2011-10-141-0/+15
| | | | | | | | | | | | | 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>
* distro_tracking_fields: UpdatesSaul Wold2011-10-141-6/+19
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* xserver-xf86(-dri)-lite: rename to xserver-xorg and xserver-xorg-liteMartin Jansa2011-10-115-19/+19
| | | | | | | | | * xserver-xorg is closer to upstream naming and that's how it's named in OE-classic and meta-oe? It would make meta-oe transition easier and better to do it now then convert meta-oe to xserver-xf86 and then rename it back later. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* local.conf.sample: Fix typos and default to no patch resolverRichard Purdie2011-10-112-9/+9
| | | | | | Based on a patch from Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>