summaryrefslogtreecommitdiffstats
path: root/meta
Commit message (Collapse)AuthorAgeFilesLines
* 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-102-2/+2
| | | | | | | | | | 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>
* xserver-xf86-common: Remove COMPATIBLE_HOST as it was wrong solutionSaul Wold2011-01-071-1/+0
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* insane.bbclass: Enable the package_qa_hash_style checkRichard Purdie2011-01-071-2/+2
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xvinfo: Fix LIC_FILES_CHKSUMRichard Purdie2011-01-071-1/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libcanberra: Fix LIC_FILES_CHKSUMRichard Purdie2011-01-071-1/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bison-native: create a wrapper script for sstate installationKevin Tian2011-01-071-1/+7
| | | | | | | | bison-native encodes M4 and PKGDATA staging path in its binary, which breaks sstate installation in a new build environment. Use create_wrapper similar as flex-native to solve this issue Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* flex-native: create a wrapper script for sstate installationKevin Tian2011-01-072-1/+4
| | | | | | | | | flex-native encodes M4 staging path in its binary, which breaks sstate installation in a new build environment. Use create_wrapper to create a wrapper script which explicitly set M4 environmental variable to the new path Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* perl: use ${CCLD} instead of its own LD definitionKevin Tian2011-01-071-2/+2
| | | | | | | | | | perl explicitly assigns LD to a bogus value: oe_runmake perl LD="${TARGET_SYS}-gcc" which breaks sstate-based build when toolchain is not generated locally, due to lacking of --sysroot option. Use ${CCLD} instead to make this relocatable. Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* base.bbclass: Use the new stampfile function in bitbake to determine the ↵Richard Purdie2011-01-061-1/+1
| | | | | | path to the stampfile Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* recpies: use SRCPV instead of SRCREV for PVYu Ke2011-01-0650-50/+50
| | | | | | | | SRCPV is intended being used by PV, some recipes still use SRCREV for PV, which is not correct. This patch fix all the misusage. Signed-off-by: Yu Ke <ke.yu@intel.com>
* insane.bbclass: Fix message for LIC_FILES_CHKSUM ErrorsSaul Wold2011-01-061-8/+8
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* python-dbus: upgrade from 0.83.1 to 0.83.2Nitin A Kamble2011-01-061-3/+3
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* byacc: upgrade recipe from 20100610 to 20101127Nitin A Kamble2011-01-062-7/+7
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* git: upgrade from 1.7.3.2 to 1.7.3.4Nitin A Kamble2011-01-061-2/+2
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* distro-tracking: update recently updated recipesNitin A Kamble2011-01-061-8/+5
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* modutils: Extend gcc4 patch for obj_ppc.cSaul Wold2011-01-061-16/+41
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* xserver: Add COMPATIBLE_MACHINESaul Wold2011-01-061-0/+2
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* rpm: Bump PR to force rebuild due to new beecryptSaul Wold2011-01-061-1/+1
| | | | Signed-off-by: Saul Wold <sgw@linux.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>
* dbus-glib: upgrade to version 0.92Scott Garman2011-01-064-11/+13
| | | | | | Includes some minor recipe formatting changes. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* dbus-glib: delete unused patchScott Garman2011-01-061-17/+0
| | | | Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* libgdbus_git: metadata fixes and minor formatting changesScott Garman2011-01-061-8/+14
| | | | | | | * Added DESCRIPTION, SECTION, PRIORITY, and PR fields * Updated SUMMARY and HOMEPAGE fields to reflect more accurate info Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* blktool: minor formatting changesScott Garman2011-01-061-3/+6
| | | | Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* apmd: added HOMEPAGE, minor formatting changesScott Garman2011-01-061-4/+5
| | | | Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* apmd: delete unused patchScott Garman2011-01-061-59/+0
| | | | Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* pax-utils: upgrade to version 2.2.2Scott Garman2011-01-062-19/+21
| | | | | | | * Upgrade to latest upstream release * Minor cosmetic recipe changes Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* binutils: use default ${CC} instead of defining it ownKevin Tian2011-01-062-3/+1
| | | | | | | | binutils.inc exports its own ${CC} which is similar to default ${CC} but missing ${TOOLCHAIN_OPTION}, which makes --sysroot option lost when compiling target binutils which then further breaks sstate. Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* kernelshark: add ftrace gui viewerDarren Hart2011-01-062-1/+24
| | | | | | | | | | | | | 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>
* glib-2.0: fix g_once_init_enter compile failureDarren Hart2011-01-062-2/+26
| | | | | | | | | | Kernelshark trips over a compile bug in glib-2.0 addressed by Open Embedded back in the 2.22 timeframe. It appears to still be present in 2.27. http://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg00529.html Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Tom Zanussi <tom.zanussi@intel.com>
* trace-cmd: license file updatesDarren Hart2011-01-061-2/+3
| | | | Signed-off-by: Darren Hart <dvhart@linux.intel.com>
* trace-cmd: fix cross-compilationDarren Hart2011-01-061-7/+5
| | | | | | | | | | | | | | The trace-cmd Makefile forces certain variables, such as CC and AR. It was using the host gcc and loader, fix it to use the poky-built cross-compiler and linker. inherit pkgconfig to ensure we don't use the host pkg-config. Remove unecessary variables from the oemake commands, such as ARCH and LD which aren't used by the Makefile. Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Tom Zanussi <tom.zanussi@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>
* librsvg: upgrade from 2.32.0 to 2.32.1Dexuan Cui2011-01-062-3/+4
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* libxxf86misc: upgrade from 1.0.2 to 1.0.3Dexuan Cui2011-01-061-2/+3
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* libdmx: upgrade from 1.1.0 to 1.1.1Dexuan Cui2011-01-062-14/+16
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* pixman: upgrade from 0.20.0 to 0.21.2Dexuan Cui2011-01-061-4/+5
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* scrnsaverproto: upgrade from 1.2.0 to 1.2.1Dexuan Cui2011-01-061-3/+6
| | | | | | | | Add "--enable-specs=no" to disable doc generation -- I doubt we really need it, and it doesn't work well due to SEVERE: Error with opening URL 'http://docbook.sourceforge.net/release/images/draft.png'. Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* resourceproto: upgrade from 1.1.0 to 1.1.1Dexuan Cui2011-01-061-3/+5
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* compositeproto: upgrade from 0.4 to 0.4.2Dexuan Cui2011-01-062-11/+14
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* xproto: upgrade from 7.0.19 to 7.0.20Dexuan Cui2011-01-062-13/+14
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* inputproto: upgrade from 2.0 to 2.0.1Dexuan Cui2011-01-062-15/+16
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* renderproto: upgrade from 0.11 to the latest version 0.11.1Dexuan Cui2011-01-061-4/+5
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>