summaryrefslogtreecommitdiffstats
path: root/meta/conf
Commit message (Collapse)AuthorAgeFilesLines
* sstate.bbclass: Update to use SSTATE variables everywhere and remove the now ↵Richard Purdie2010-09-293-5/+5
| | | | | | unneeded complicated paths from the sstate files Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* local.conf.sample: set RPM as default package and rootfs image creationSaul Wold2010-09-281-2/+3
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* poky-default.inc: change the hardcoded glibc-initial to ${POKYLIBC}-initialDexuan Cui2010-09-271-1/+1
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* distro_tracking_fields.inc: update cpio infoScott Garman2010-09-271-1/+1
| | | | | | Reflects current status of cpio recipes. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* distro_tracking_fields.inc: update grep infoScott Garman2010-09-271-4/+4
| | | | | | | Reflects current status of grep, including new recent release information. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* distro_tracking: Update tracking infoSaul Wold2010-09-271-12/+69
| | | | | | Add additional aliases and tracking fields for missing packages Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* qemux86-64: remove -march for 64bit common pcQing He2010-09-271-1/+1
| | | | | | Fixes [BUGID #347]. Signed-off-by: Qing He <qing.he@intel.com>
* netbook: Correct netbook build by moving netbook configuration from moblin ↵Saul Wold2010-09-241-0/+44
| | | | | | to meta Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* distro_tracking_fields.inc: merged fixesSaul Wold2010-09-221-5/+5
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* upgrade gcc to 4.5.0 for mips architectureDongxiao Xu2010-09-221-1/+0
| | | | | | | | | | | | Fix the out of memory when building webkit-gtk with gcc-4.5.0 The new feature added after 4.3.3 "http://www.pubbs.net/200909/gcc/94048-patch-add-support-for-rmipsjalr.html" will cause cc1plus eat up all the system memory when build webkit-gtk. The function mips_get_pic_call_symbol keeps on recursively calling itself. Disable this feature to walk aside the bug. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* qemuarm: remove NFS_ROOT overrideBruce Ashfield2010-09-221-1/+1
| | | | | | | | | During the debug of disk booting on the qemuarm target, the NFS_ROOT default settings were incorrectly overriden. This removes the overide and allows the default / global settings to be processed. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* Add DISTRO_PN_ALIAS for 95 packagesYu Ke2010-09-221-21/+98
| | | | | Signed-off-by: Yu Ke <ke.yu@intel.com> Signed-off-by: Mei Lei <lei.mei@intel.com>
* bitbake.conf/documentation.conf: Start using SUMMARY variable and document itRichard Purdie2010-09-212-5/+10
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* poky.conf: use eglibc rather than glibcDexuan Cui2010-09-211-1/+1
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* poky-eglibc.inc: fix multiple providers for virtual/libc-nativesdk and otherDexuan Cui2010-09-211-2/+8
| | | | | | | | | | | | | | | | This commit fixes the following error while doing this: bitbake poky-image-minimal NOTE: multiple providers are available for virtual/libc-nativesdk (glibc-nativesdk, eglibc-nativesdk) NOTE: consider defining a PREFERRED_PROVIDER entry to match virtual/libc-nativesdk NOTE: multiple providers are available for virtual/i586-pokysdk-linux-libc-initial-nativesdk (glibc-initial-nativesdk, eglibc-initial-nativesdk) NOTE: consider defining a PREFERRED_PROVIDER entry to match virtual/i586-pokysdk-linux-libc-initial-nativesdk And bumped PR. This partly fixes [BUGID #329] Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* linux-wrs: update SRCREVsBruce Ashfield2010-09-211-6/+6
| | | | | | | | | | | | | | | | | | | | | The following are the highlights of the latest updates to the 2.6.34 kernel tree: 086d819 selinux: fix parallel compile error 0bffbc5 MIPS: Audit: Fix hang when starting audit e49491e ucc_geth: fix ethtool set ring param bug 53b9f33 params: don't hand NULL values to param.set callbacks. eb3b13c irda: Correctly clean up self->ias_obj on irda_bind() failure. b4aee0b crypto: fix missed kfree for crypto_req f8490d8 x86-64, compat: Test %rax for the syscall number, not %eax c3acc43 x86-64, compat: Retruncate rax after ia32 syscall entry tracing 5c21faf compat: Make compat_alloc_user_space() incorporate the access_ok() afc2a18 Merge commit 'v2.6.34.7' into standard f423469 Linux 2.6.34.7 Built and booted on all architectures. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* distro_track: add dpkg, m4, and cmake tracking fieldsDongxiao Xu2010-09-173-14/+40
| | | | | | | distro_tracking_fields.inc: moved updates to master file Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* gcc: upgrade gcc for powerpc to version 4.5.0Dongxiao Xu2010-09-171-1/+0
| | | | | | | | | | | | | | Fix one parameter order issue for base_contains function, which impacts glibc build under new gcc. Add new judge code to determine whether <altivec.h> is needed. This fixes the mpeg2dec build failure under new gcc. Use O2 as the optimization flag to tinylogin as it will meet segfault if compiled by gcc-4.5.0 when enable both frename-registers and Os options. Use O2 instead. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* formfactor: Add machconfig in qemux86-64 to avoid HAVE_KEYBOARD unset.Zhai Edwin2010-09-171-0/+1
| | | | | | | | | | | This prevent matchbox-kerboard starting as daemon automatically. Also fix minor issue of netbase on qemux86-64, and add the machine in local.conf.sample [BUGID #308] fixed by this. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* bblayers.conf.sample: remove meta-moblin from default layersScott Garman2010-09-172-3/+2
| | | | | | This fixes [BUGID #273] Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* distro_tracking_fields.inc: Merged tracking dataSaul Wold2010-09-171-8/+25
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* Distro tracking: update mdadm, screen, oprofile; add libsdlDexuan Cui2010-09-174-6/+25
| | | | | | | | Add tracking info for libsdl; Move oprofile from distro_toolchain_devel.inc to distro_toolchain_devel.inc; Add RECIPE_MAINTAINER_pn for mdadm, screen, oprofile, libsdl. Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* Distro Tracking: Updated and add Poky Alias infoSaul Wold2010-09-174-32/+5540
| | | | | | | | | | | | distro_check.py: Add DISTRO_PN_ALIAS check for Poky, OpenedHand, Intel and Upstream, to mark packages that are not in known upstreams distro_tracking_fields.inc: Merged private files into 1 master file Added additional Maintainer Info Added Distro Alias information for Poky and OpenedHand Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* distro-track: zypper related packagesQing He2010-09-172-1/+42
| | | | | | add tracking fields for zypper related packages Signed-off-by: Qing He <qing.he@intel.com>
* distro field: add distro fields for some graphcis recipesYu Ke2010-09-172-0/+57
| | | | | | | | | | | | | they are: imake fotowall libdrm-poulsbo mesa-dri-glsl-native qt4-tools-native quicky xf86-video-vesa Signed-off-by: Yu Ke <ke.yu@intel.com>
* distro tracking: Add info for gobject-introspection, ↵Zhai Edwin2010-09-173-1/+53
| | | | | | gdk-pixbuf-csource-native and qemu-helper-native... Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* distro data: Update distro data tracking dataSaul Wold2010-09-175-8/+9
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* local.conf.sample: Fix commented value to match the default download directoryRichard Purdie2010-09-161-2/+2
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* poky-default-revisions.inc: Add missing SRCREV for dtc-nativeRichard Purdie2010-09-101-0/+1
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* qemu_x86_64/conf: enable E1000 by defaultBruce Ashfield2010-09-101-1/+1
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* poky-default-revisions: set default dtc srcrevAdrian Alonso2010-09-101-0/+1
| | | | | | | * Set default devicetree SRCREV version Signed-off-by: Adrian Alonso <aalonso00@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* pseudo: Update pseudo to latest revisionMark Hatle2010-09-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Fix bug 231 by changeing to the latest revision of pseudo. The latest revision of pseudo includes the following changes: 2010-09-08: * (seebs) handle mkfifo without guaranteeing an EINVAL response. 2010-09-02: * (seebs) fix errno for getcwd() with insufficient size * (seebs) Add an RPATH entry to the pseudo binary to find the sqlite3 library. 2010-09-01: * (seebs) add missing casts to even more printf arguments 2010-08-31: * (seebs) add missing casts to printf arguments, after being warned about them a mere twenty or thirty thousand times. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
* linux-wrs/meta: fix qemuarm boot issues with 2.6.34.6Bruce Ashfield2010-09-101-1/+1
| | | | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* poky-default-revisions.inc: Fix variable order for linux-wrs recipesRichard Purdie2010-09-091-6/+6
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* image.bbclass: change IMAGE_EXTRA_SPACE to IMAGE_OVERHEAD_FACTORSaul Wold2010-09-081-1/+5
| | | | | | | | This change allows the IMAGE_OVERHEAD_FACTOR (default to 1.2) to adjust dynamicly how much space to add for each image, thus there is 20% overhead space by default. Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* Distro tracking: add package aliasesDexuan Cui2010-09-082-0/+19
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* poky-default.inc: Use standard udev version for PPC, seems to work fineRichard Purdie2010-09-071-1/+0
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* kernel/wrs: update SRCREV for v2.6.34.6 + changesBruce Ashfield2010-09-061-6/+6
| | | | | | | | | | Updating the SRCREVs for the recent port of bug fixes for all boards and the integration of qemux86-64 config and connector changes. Now that the qemux86-64 changes are in tree, we can drop them from the linux-wrs recipe. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* poky-default-revisions.inc: Move SRCREVs to correct locations, fix whitespaceRichard Purdie2010-09-061-1/+3
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* poky-default.inc: Make sure sdk version of gcc is fixed and doesn't changeRichard Purdie2010-09-061-5/+5
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* rpm: Change the way the python version is determined so its sane and works ↵Richard Purdie2010-09-031-0/+5
| | | | | | with checksumming Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* distro-tracking: update lttng-ust, lttng-viewerDexuan Cui2010-09-031-2/+0
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* poky.conf: Set hash policyRichard Purdie2010-09-031-0/+5
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* eglibc: Set BBCLASSEXTEND to include nativesdkRichard Purdie2010-09-032-1/+9
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* distro-tracking: update cronieDexuan Cui2010-09-021-2/+2
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* updateme: detect and prepare patchesBruce Ashfield2010-09-021-1/+1
| | | | | | | | | | | | | | The big part of this commit is to detect and prepare any "free floating" patches into a kernel feature that will be automatically applied to the kernel tree. These patches will be pushed onto the BSP branch via guilt, and then built as part of the normal build/deploy cycle. There are other grouped cleanups, such as tabs instead of spaces, and the removal of the unused decheckpoint function. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* distro tracking field: add NO_UPDATE_REASON for cairoYu Ke2010-09-021-1/+2
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* distro-tracking: update devel/toolchain dataNitin A Kamble2010-09-021-12/+7
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* libc-package.bbclass: merge glibc & eglibc class filesNitin A Kamble2010-09-022-12/+1
| | | | | | | | | | | | | | | | | | | | Other enhancements: print qemu's stdio & error on failure glibc: enable locale generation for all arches eglibc: enable binary locale generation for mips And cleanup of code based on the code review. [e]glibc: move common definition in the common file bitbake was complaining about duplicate definition of get_libc_fpu_setting in eglibc.inc & glibc.inc files. And bump PRs Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* distro_tracking: add alias for bluez4, libgsmd, and zeroconfDongxiao Xu2010-09-021-0/+3
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>