summaryrefslogtreecommitdiffstats
path: root/meta/conf
Commit message (Collapse)AuthorAgeFilesLines
* poky-lsb: Add poky-lsb.conf as distro of lsb imageJingdong Lu2011-01-201-0/+6
| | | | Signed-off-by: Jingdong Lu<jingdong.lu@windriver.com>
* machine/qemu: Allow for users to override the preferred kernel versionDarren Hart2011-01-201-1/+1
| | | | | | | | The linux-yocto-rt kernel has been boot tested on qemux86-64. Unlock the preferred provider for virtual/kernel so it can be selected and used. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
* systemtap: new packageTom Zanussi2011-01-201-0/+1
| | | | | | | Add systemtap, a general-purpose script-directed dynamic tracing and performance analysis tool for Linux. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
* qemuimagetest: Use same image during sanity testing instead of copying a new ↵Jiajun Xu2011-01-201-5/+5
| | | | | | | | | | | | | | | | | image for each case To reduce the time on sanity testing, we remove variable SHARE_IMAGE and use a new variable TEST_SERIALIZE in local.conf. It is by default set to 1. Poky will copy and boot the to-be tested image for only once. It will not remove or kill the image and test cases will be serialized executed against the same image. If it is set to 0, image is always be copied for each cases, which takes much time. I had a experiment that latest qemuppc sato only takes 7 minutes to finish 9 sanity test cases, which takes more than 20 minutes before. I also removed sanity case "boot" from sato/sdk/lsb because the other cases for these targets already cover the check point of "boot". Signed-off-by Jiajun Xu <jiajun.xu@intel.com>
* linux-yocto: beagleboard enablementBruce Ashfield2011-01-191-3/+3
| | | | | | | | | | | | Enable beagleboard support for 2.6.37. The only non-kernel related change for the board is to update the serial console designation. The Beagleboard use omap serial driver, so we replace ttyS2 with ttyO2. This is described in following link: http://www.mail-archive.com/linux-omap@vger.kernel.org/msg40838.html Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Liming Wang <liming.wang@windriver.com>
* distro-tracking: update manual checkingSaul Wold2011-01-181-10/+17
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* pseudo: Update to the latest upstream versionMark Hatle2011-01-181-1/+1
| | | | | | | | | Update pseudo to the latest version to resolve a number of optimization defects. The problems were present on both 64-bit and 32-bit systems, but generally only caused issues on 32-bit hosts. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
* xserver-xf86-dri-lite: upgrade to 1.9.3Yu Ke2011-01-181-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* mesa: add mesa 7.8.2Yu Ke2011-01-181-1/+1
| | | | | | The latest mesa 7.10 has dependency on GPLv3 library talloc, so it is still necessary to keep one old non-GPLv3 mesa.And the latest non-GPLv3 version is mesa 7.8.2, so this patch add it. Signed-off-by: Yu Ke <ke.yu@intel.com>
* xf86-video-intel: upgrade to 2.14.0Yu Ke2011-01-181-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* xwininfo: upgrade to 1.1.1Yu Ke2011-01-181-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* libdrm: upgrade to 2.4.23Yu Ke2011-01-181-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* xf86-input-synaptics: upgrade to 1.3.0Yu Ke2011-01-181-1/+1
| | | | | | | - update license checksum due to commit "COPYING: add three missing authors listed in synaptics.c". the license type is unchanged. - Pass correct "sdkdir" value for cross compiling Signed-off-by: Yu Ke <ke.yu@intel.com>
* xf86-input-evdev: upgrade to 2.6.0Yu Ke2011-01-181-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* xf86-input-keyboard: upgrade to 1.5.0Yu Ke2011-01-181-1/+1
| | | | | | - update license checksum due to commit "Sun's copyrights now belong to Oracle". the license type is unchanged. Signed-off-by: Yu Ke <ke.yu@intel.com>
* xdpyinfo: upgrade to 1.2.0Yu Ke2011-01-181-1/+1
| | | | | | - update license checksume due to the commit "COPYING: replace stub with actual copyright notice". it provide more accurate license info. the license type is unchanged. Signed-off-by: Yu Ke <ke.yu@intel.com>
* xprop: upgrade to 1.2.0Yu Ke2011-01-181-1/+1
| | | | | | - LICENSE_CHECKSUM changed due to the commit "COPYING: replace stub with copyright notices". this commit add more accurate license info, and the license type is still MIT-X. Signed-off-by: Yu Ke <ke.yu@intel.com>
* bigreqsproto: upgrade to 1.1.1Yu Ke2011-01-181-3/+3
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* xinit: upgrade to 1.3.0Yu Ke2011-01-181-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* xhost: upgrade to 1.0.4Yu Ke2011-01-181-1/+1
| | | | | | - LICENSE checksum changes due to that "Sun's copyrights now belong to Oracle". it is corp name change only, the license is still MIT-X. Signed-off-by: Yu Ke <ke.yu@intel.com>
* libgcc: use the new recipe (rather than gcc-runtime) to install libgcc_s.so* ↵Dexuan Cui2011-01-171-0/+2
| | | | | | | | | | | | | | | and crt*.o Currently gcc-runtime installs the files, but actually gcc-runtime's do_configure checks if the files are available, so before we build gcc-runtime, we should have some recipe install the files first! -- currently gcc-cross-intermediate actually does that(gcc-cross also installs the files, but it installs into the gcc-build-internal* directory), but gcc-cross-intermediate will have its own sysroot in future, after that, gcc-runtime won't build. So let us add this new target recipe and move the installation of the files from gcc-runtime into it. Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* linux-yocto: enable arch ARM config settings for KARCH based boardsBruce Ashfield2011-01-171-1/+1
| | | | | | | | The switch to KARCH meant that the arch arm settings were not being applied to all boards. This commit adds the new option along with the existing one to cover all boards. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* linux-yocto-stable: add atom-pc preempt_rt supportBruce Ashfield2011-01-171-1/+1
| | | | | | | | | | | | | | | | Updating the SRCREV to capture this commit to the 2.6.34 kernel: linux-2.6-windriver: atom-pc-preempt_rt meta-data The following patch adds support for the preempt_rt kernel type for the atom-pc machine. It should be applied to the wrs_meta branch. Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Bruce Ashfield <bruce.ashfield@windriver.com> CC: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* linux-yocto: add systemtap config to -stable and -dev kernelsBruce Ashfield2011-01-171-2/+2
| | | | | | | | | | | | | | Enable the parameters required for systemtap for all BSPs based off the standard kernel type. CONFIG_KPROBES=y CONFIG_RELAY=y CONFIG_DEBUG_INFO=y CONFIG_DEBUG_FS=y CONFIG_MODULES=y CONFIG_MODULE_UNLOAD=y Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* qemuimagetest: Use the same image in sanity testing to fix the timeout issue ↵Jiajun Xu2011-01-141-0/+8
| | | | | | | | | | | | | | | on autobuilder Fixes [BUGID #595] Because of the QEMU booting slowness issue(see bug #646 and #618), autobuilder may suffer a timeout issue when running sanity test. We introduce variable SHARE_IMAGE here to fix the issue. It is by default set to 1. Poky will copy latest built-out image and keep using it in sanity testing. If it is set to 0, latest built-out image will be copied and tested for each case, which will take much time. Signed-off-by Jiajun Xu <jiajun.xu@intel.com>
* bitbake.conf: Whitelist FILESPATH as a variable not to include in taskhashesRichard Purdie2011-01-121-1/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake.conf: Whitelist MACHINE variable in PACKAGE_ARCHSRichard Purdie2011-01-121-0/+3
| | | | | | | | | | | | PACKAGE_ARCHS represents all compatible architectures for a given machine. It makes no sense for this variable to change any task checksums as it doesn't inject any machine dependency into any known task. Multimachine means machine specific packages will be detected through other variables. Before this patch, even native packaging tasks were ending up being marked as machine specific. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: add routerstation pro and mpc8315e-rdb supportBruce Ashfield2011-01-123-5/+5
| | | | | | | | | The routerstation pro and mpc8315e-rdb have been validated on 2.6.37 so we can switch their preference to linux-yocto and update the machine compatibility to add them to the support list. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* trace-cmd: Bump SRCREV and recipe PV and PR values.Darren Hart2011-01-121-1/+1
| | | | | | | | | | | Upgrade to 6c696cec3f264a9399241b6e648f58bc97117d49 which includes fixes to the Makefile to allow for user override of CC and AR via the environment as well as python SWIG wrapper fixes. Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Bruce Ashfield <bruce.ashfield@windriver.com> CC: Tom Zanussi <tom.zanussi@intel.com>
* linux-yocto: update to 2.6.37Bruce Ashfield2011-01-101-11/+11
| | | | | | | | | | Fixes [BUGID: 620] Update the SRCREVs to include the full 2.6.37 release plus the forward port of the alternate RPC port patch. With this fix, we can complete usermode NFS booting of all the qemu* targets. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* kern-tools: create generic variables for platform/board/kernelBruce Ashfield2011-01-101-2/+2
| | | | | | | | Update the SRCREV to pickup changes to update the use of WRS_* to be K* to provide more generic names for the platform/board/kernel configuration options. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* linux-yocto: update SRCREV to pickup debug/ftrace config changesBruce Ashfield2011-01-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | Updating to reflect the changes from Darren Hart: [ linux-yocto-2.6.37: Add debugfs and ftrace features to standard ktype meta-data ftrace provides low impact tracing facilities and should be made available on the main kernel - as opposed to a debug or tracing kernel which often add enough overhead to mask subtle bugs. These features are available on the 2.6.34 yocto kernel. Boot and trace-cmd tested on qemux86-64. Signed-off-by: Darren Hart <darren@dvhart.com> CC: Bruce Ashfield <bruce.ashfield@windriver.com> CC: Tom Zanussi <tom.zanussi@intel.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* routerstation: disable command line overridesBruce Ashfield2011-01-101-2/+2
| | | | | | | | | | | Fixes [BUGID #581] The initial routerstation pro BSP went out with with command line overrides enabled. We'd need to be able to set the command line from Redbot, so we should disable the forcing of the built in variant. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* kernel-yocto: pass the build directory to configmeBruce Ashfield2011-01-101-1/+1
| | | | | | | | | | configme used to be able to calculate the output/build directory when branches were always <machine>-<kernel type>. Branch names can now be widely different and to avoid embedding complexity in the scripts it is easier to just pass ${B} from the build system down to the scripts. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* Fetcher: break the "SRCREVINACTION" deadlockYu Ke2011-01-101-1/+1
| | | | | | | | | | | | | | | | | | | | | Current fetcher has annoying "SRCREVINACTION" deadlock, which occurs when SRCREV=${AUTOREV}=@bb.fetch.get_srcrev(): get_srcrev()->setup_localpath()->srcrev_internal_helper() ->evaluate SRCREV->get_srcrev() current fetcher resolve the deadlock by introducing a "SRCREVINACTION" condition check. Althoguh it works, it is indeed not clean. This patch use antoehr idea to break the deadlock: break the dependency among SRCREV and get_srcrev(), i.e. assign a specific keyword "AUTOINC" to AUTOREV. when Fetcher meet this keyword, it will check and set the latest revision to urldata.revision. get_srcrev later can use the urldata.revision for value evaluation(SRCPV etc). In this case, SRCREV no longer depends on get_srcrev, and there is not deadlock anymore. Signed-off-by: Yu Ke <ke.yu@intel.com>
* machines: move PACKAGE_EXTRA_ARCHS to tune filesKoen Kooi2011-01-1041-29/+38
| | | | | | | | This gets us closer to making including tune-<arch>.inc "just work". Moving the TARGET_ARCH definitions is something for a follup patch. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake/poky.conf: Add TARGET_LINK_HASH_STYLE option to TARGET_LDFLAGS as ↵Richard Purdie2011-01-102-1/+4
| | | | | | per OE.dev Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* distro-tracking: update recently updated recipesNitin A Kamble2011-01-061-8/+5
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* distro_tracking_fields.inc: update apmd, blktool, dbus-glib, libgdbus, and ↵Scott Garman2011-01-061-21/+24
| | | | | | pax-utils Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* kernelshark: add ftrace gui viewerDarren Hart2011-01-061-1/+3
| | | | | | | | | | | | | The trace-cmd source includes a graphical trace viewer, but we don't want to make the trace-cmd recipe depend on gtk+. This patch adds a second recipe in the meta/recipes-kernel/trace-cmd directory which uses the trace-cmd SRCREV and RDEPENDS on trace-cmd to ensure compatibility. Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Tom Zanussi <tom.zanussi@intel.com> CC: Richard Purdie <richard.purdie@linuxfoundation.org> CC: Saul Wold <sgw@linux.intel.com>
* distro_tracking_fields.inc: update for lastest package updatesDexuan Cui2011-01-061-45/+51
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* preferred-xorg-versions.inc: updated for lastest package updatesDexuan Cui2011-01-061-14/+14
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* matchbox-wm-2: Upgrade to svn r2106Zhai Edwin2011-01-061-1/+1
| | | | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* linux-yocto/stable: update SRCREVs for 2.6.34.x -stable updateBruce Ashfield2011-01-031-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Paul Gortmaker maintains the upstream 2.6.34.x -longerm tree. The yocto stable kernel tracks this tree and incorporates those nominated changes. This commit updates the BSP SRCREVs to the latest 2.6.34.x merge and picks up 260 -stable commits for each BSP. The combined diffstat between 2.6.34.7 and this update follows: arch/alpha/kernel/err_marvel.c | 6 +- arch/arm/kernel/entry-common.S | 2 + arch/arm/mach-at91/at91sam9g45_devices.c | 2 +- arch/ia64/include/asm/compat.h | 2 +- arch/ia64/kernel/fsys.S | 30 ++- arch/ia64/kernel/msi_ia64.c | 2 +- arch/ia64/sn/kernel/msi_sn.c | 2 +- arch/mips/include/asm/atomic.h | 24 +- arch/mips/include/asm/compat.h | 2 +- arch/mips/mti-malta/malta-pci.c | 2 + arch/mips/nxp/pnx8550/common/pci.c | 1 + arch/mips/nxp/pnx8550/common/setup.c | 2 +- arch/mips/pci/ops-pmcmsp.c | 1 + arch/mips/pci/pci-yosemite.c | 1 + arch/parisc/include/asm/compat.h | 2 +- arch/powerpc/include/asm/compat.h | 2 +- arch/powerpc/kernel/head_64.S | 18 +- arch/powerpc/kernel/ppc970-pmu.c | 2 + arch/s390/include/asm/compat.h | 2 +- arch/sparc/include/asm/compat.h | 2 +- arch/sparc/include/asm/oplib_64.h | 27 +-- arch/sparc/prom/cif.S | 16 +- arch/sparc/prom/console_64.c | 48 +++- arch/sparc/prom/devops_64.c | 36 +++- arch/sparc/prom/misc_64.c | 314 +++++++++++++++++++-------- arch/sparc/prom/p1275.c | 102 +--------- arch/sparc/prom/tree_64.c | 210 +++++++++++++----- arch/um/drivers/ubd_kern.c | 9 +- arch/x86/ia32/ia32entry.S | 22 ++- arch/x86/include/asm/amd_iommu_proto.h | 6 + arch/x86/include/asm/amd_iommu_types.h | 12 + arch/x86/include/asm/compat.h | 2 +- arch/x86/include/asm/cpufeature.h | 2 +- arch/x86/include/asm/io.h | 1 + arch/x86/include/asm/kvm_host.h | 24 -- arch/x86/include/asm/smp.h | 9 +- arch/x86/include/asm/tsc.h | 2 + arch/x86/kernel/Makefile | 2 + arch/x86/kernel/amd_iommu.c | 4 +- arch/x86/kernel/amd_iommu_init.c | 67 ++++-- arch/x86/kernel/apic/io_apic.c | 15 +- arch/x86/kernel/cpu/common.c | 4 +- arch/x86/kernel/cpu/cpu.h | 1 + arch/x86/kernel/cpu/intel.c | 1 + arch/x86/kernel/cpu/mcheck/mce_amd.c | 9 +- arch/x86/kernel/cpu/mtrr/cleanup.c | 2 +- arch/x86/kernel/crash_dump_64.c | 3 +- arch/x86/kernel/hpet.c | 2 +- arch/x86/kernel/olpc.c | 5 +- arch/x86/kernel/reboot.c | 2 +- arch/x86/kernel/smp.c | 15 +- arch/x86/kernel/tsc.c | 38 ++++ arch/x86/kvm/paging_tmpl.h | 30 +++- arch/x86/kvm/svm.c | 17 +- arch/x86/kvm/vmx.c | 28 +-- arch/x86/kvm/x86.c | 2 +- arch/x86/oprofile/nmi_int.c | 27 ++- arch/x86/power/cpu.c | 2 + arch/x86/xen/enlighten.c | 2 +- arch/x86/xen/smp.c | 6 +- block/bsg.c | 2 +- drivers/acpi/acpica/aclocal.h | 1 + drivers/acpi/blacklist.c | 16 ++ drivers/acpi/processor_core.c | 6 - drivers/ata/libata-core.c | 14 +- drivers/ata/libata-eh.c | 4 + drivers/ata/sata_mv.c | 44 +++- drivers/bluetooth/hci_ldisc.c | 7 + drivers/char/agp/sis-agp.c | 8 - drivers/char/mem.c | 3 +- drivers/char/pcmcia/synclink_cs.c | 2 + drivers/dma/mv_xor.c | 2 +- drivers/gpu/drm/drm_crtc_helper.c | 4 +- drivers/gpu/drm/i915/i915_dma.c | 12 +- drivers/gpu/drm/i915/i915_gem.c | 1 + drivers/gpu/drm/i915/intel_display.c | 5 +- drivers/hwmon/f75375s.c | 6 +- drivers/hwmon/k8temp.c | 35 +++- drivers/i2c/busses/i2c-pca-isa.c | 12 +- drivers/i2c/busses/i2c-pca-platform.c | 11 +- drivers/infiniband/hw/cxgb3/iwch_cm.c | 6 +- drivers/input/joydev.c | 3 + drivers/input/serio/i8042.c | 2 +- drivers/media/video/cx231xx/cx231xx-cards.c | 14 +- drivers/media/video/v4l2-compat-ioctl32.c | 32 ++- drivers/message/fusion/mptscsih.c | 2 + drivers/misc/sgi-xp/xpc_uv.c | 17 ++ drivers/mmc/host/sdhci-s3c.c | 6 +- drivers/mmc/host/tmio_mmc.c | 7 +- drivers/mmc/host/tmio_mmc.h | 13 +- drivers/net/atlx/atl1.c | 5 +- drivers/net/b44.c | 4 +- drivers/net/bonding/bond_3ad.c | 3 + drivers/net/bonding/bond_alb.c | 3 + drivers/net/cxgb3/cxgb3_main.c | 2 + drivers/net/eql.c | 2 + drivers/net/netxen/netxen_nic_init.c | 3 - drivers/net/r8169.c | 12 +- drivers/net/skge.c | 18 ++- drivers/net/tun.c | 3 +- drivers/net/usb/hso.c | 2 + drivers/net/wireless/ath/ath5k/base.c | 11 +- drivers/net/wireless/ath/ath9k/eeprom.h | 2 +- drivers/net/wireless/ath/regd.h | 1 - drivers/net/wireless/hostap/hostap_pci.c | 1 + drivers/net/wireless/p54/eeprom.c | 4 +- drivers/net/wireless/p54/p54usb.c | 15 ++- drivers/net/wireless/p54/txrx.c | 2 +- drivers/oprofile/buffer_sync.c | 27 ++- drivers/oprofile/cpu_buffer.c | 2 - drivers/pci/intel-iommu.c | 90 ++++---- drivers/pci/msi.c | 27 +++- drivers/pci/quirks.c | 20 ++ drivers/power/apm_power.c | 1 + drivers/scsi/gdth.c | 8 + drivers/scsi/libsas/sas_ata.c | 1 + drivers/scsi/scsi_lib.c | 3 +- drivers/scsi/scsi_sysfs.c | 3 +- drivers/scsi/sd.c | 15 +- drivers/staging/hv/RingBuffer.c | 3 +- drivers/staging/hv/StorVscApi.h | 4 +- drivers/staging/hv/netvsc_drv.c | 3 + drivers/staging/hv/storvsc_drv.c | 9 +- drivers/staging/usbip/usbip_event.c | 16 +- drivers/staging/usbip/vhci_hcd.c | 2 + drivers/staging/vt6655/wpactl.c | 11 +- drivers/usb/class/cdc-acm.c | 24 ++- drivers/usb/core/file.c | 35 ++-- drivers/usb/core/hub.c | 9 +- drivers/usb/core/message.c | 15 +- drivers/usb/gadget/atmel_usba_udc.c | 3 + drivers/usb/gadget/rndis.c | 10 +- drivers/usb/host/ehci-ppc-of.c | 12 +- drivers/usb/musb/blackfin.c | 4 +- drivers/usb/musb/musb_gadget.c | 22 ++- drivers/usb/musb/musb_gadget.h | 2 + drivers/usb/musb/musb_gadget_ep0.c | 9 + drivers/usb/serial/cp210x.c | 12 +- drivers/usb/serial/ftdi_sio.c | 43 ++++- drivers/usb/serial/ftdi_sio_ids.h | 51 +++++- drivers/usb/serial/mos7720.c | 3 + drivers/usb/serial/mos7840.c | 35 ++- drivers/usb/serial/opticon.c | 6 +- drivers/usb/serial/option.c | 23 ++- drivers/video/sis/sis_main.c | 3 + drivers/video/via/ioctl.c | 2 + drivers/xen/events.c | 21 ++- fs/aio.c | 3 + fs/binfmt_misc.c | 2 +- fs/char_dev.c | 4 +- fs/cifs/dns_resolve.c | 2 +- fs/cifs/dns_resolve.h | 2 +- fs/exec.c | 14 ++ fs/ext4/dir.c | 4 +- fs/ext4/ext4.h | 129 ++++++++++-- fs/ext4/ext4_jbd2.h | 8 +- fs/ext4/extents.c | 140 +++++++++---- fs/ext4/file.c | 2 +- fs/ext4/fsync.c | 33 +++- fs/ext4/ialloc.c | 89 ++++---- fs/ext4/inode.c | 88 +++++--- fs/ext4/ioctl.c | 25 ++- fs/ext4/mballoc.c | 108 +++++++--- fs/ext4/migrate.c | 2 +- fs/ext4/move_extent.c | 4 +- fs/ext4/namei.c | 12 +- fs/ext4/super.c | 65 +++--- fs/ext4/xattr.c | 4 +- fs/fuse/dev.c | 16 +- fs/nfs/client.c | 2 +- fs/notify/inotify/inotify_fsnotify.c | 3 + fs/notify/inotify/inotify_user.c | 7 +- fs/ocfs2/inode.c | 6 +- fs/ocfs2/symlink.c | 2 +- fs/partitions/ibm.c | 13 +- fs/pipe.c | 2 +- fs/proc/task_mmu.c | 3 +- fs/sysfs/file.c | 2 +- fs/xfs/linux-2.6/xfs_ioctl.c | 2 + include/drm/drm_pciids.h | 2 +- include/linux/compat.h | 3 + include/linux/cpuset.h | 16 +- include/linux/libata.h | 1 + include/linux/mm.h | 14 +- include/linux/mmzone.h | 13 + include/linux/msi.h | 2 + include/linux/pci_ids.h | 3 + include/linux/sched.h | 5 +- include/linux/socket.h | 2 +- include/linux/vmstat.h | 22 ++ include/net/tcp.h | 36 +++- kernel/compat.c | 21 ++ kernel/cpu.c | 18 +- kernel/cpuset.c | 67 ++++-- kernel/exit.c | 5 +- kernel/futex.c | 31 ++-- kernel/gcov/fs.c | 244 +++++++++++++++------ kernel/groups.c | 5 +- kernel/hrtimer.c | 13 +- kernel/sched.c | 180 +++++++--------- kernel/sched_fair.c | 106 +++++---- kernel/sched_idletask.c | 3 +- kernel/sched_rt.c | 5 +- kernel/sys.c | 2 + kernel/trace/ftrace.c | 19 ++- kernel/trace/ring_buffer.c | 2 +- mm/bounce.c | 2 +- mm/memory.c | 15 +- mm/memory_hotplug.c | 16 +- mm/mlock.c | 6 - mm/mmap.c | 3 - mm/mmzone.c | 21 ++ mm/page_alloc.c | 33 ++- mm/percpu.c | 2 +- mm/vmalloc.c | 9 + mm/vmstat.c | 15 ++- net/bridge/br_netfilter.c | 9 +- net/core/ethtool.c | 4 +- net/core/iovec.c | 5 +- net/core/skbuff.c | 6 +- net/core/stream.c | 8 +- net/ipv4/ip_output.c | 19 +- net/ipv4/route.c | 7 +- net/ipv4/tcp.c | 41 ++-- net/ipv4/tcp_input.c | 2 + net/ipv4/tcp_timer.c | 8 +- net/ipv4/xfrm4_policy.c | 2 +- net/ipv6/ip6_output.c | 18 +- net/ipv6/route.c | 28 ++- net/irda/af_irda.c | 4 +- net/irda/irlan/irlan_common.c | 2 +- net/llc/af_llc.c | 3 +- net/phonet/pep.c | 3 +- net/rds/page.c | 27 +-- net/rds/recv.c | 2 +- net/rose/af_rose.c | 4 +- net/sctp/output.c | 1 - net/sctp/sm_make_chunk.c | 4 +- net/sunrpc/auth_gss/auth_gss.c | 9 +- net/sunrpc/rpc_pipe.c | 6 +- net/unix/af_unix.c | 15 +- net/wireless/wext-compat.c | 3 + net/wireless/wext-core.c | 16 ++ net/wireless/wext-priv.c | 2 +- security/keys/keyctl.c | 6 +- security/keys/process_keys.c | 6 +- sound/core/control.c | 5 + sound/core/rawmidi.c | 4 +- sound/core/seq/oss/seq_oss_init.c | 9 +- sound/pci/hda/patch_analog.c | 1 + sound/pci/hda/patch_realtek.c | 8 +- sound/pci/oxygen/oxygen.c | 4 + sound/pci/rme9652/hdsp.c | 1 + sound/pci/rme9652/hdspm.c | 1 + tools/perf/util/callchain.h | 1 + 255 files changed, 2861 insertions(+), 1415 deletions(-) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* linux-yocto: update to 2.6.37-rc8Bruce Ashfield2011-01-021-11/+11
| | | | | | Updating the board SRCREVs to 2.6.37-rc8. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* distro_tracking_fields.inc: add fields for sysprofTom Zanussi2011-01-021-0/+13
| | | | | | Add distro tracking fields for sysprof recipe. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
* distro_tracking_fields.inc: add fields for blktraceTom Zanussi2011-01-021-0/+11
| | | | | | Add distro tracking fields for blktrace recipe. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
* bitbake.conf: Set a default hash policy globally, not just in the poky ↵Richard Purdie2010-12-302-5/+6
| | | | | | distro config Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* patch.bbclass: Move vardepsexclude flag to be along side the function using ↵Richard Purdie2010-12-301-1/+1
| | | | | | the variable Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* distro_tracking: update pulseaudio, ofono, netbase, etc.Dongxiao Xu2010-12-301-65/+77
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>