summaryrefslogtreecommitdiffstats
path: root/meta/conf
Commit message (Collapse)AuthorAgeFilesLines
* poky.conf: adjust variable whitelisting to fix sstate checksumsPaul Eggleton2010-12-141-1/+2
| | | | | | | | | | | | | | | | | | | | After some analysis of task dependencies I have adjusted the global whitelist used to filter out variables that would otherwise cause unwanted changes in task checksums for sstate packages. The following changes have been made to BB_HASHBASE_WHITELIST: * Fix typo: FILESEXTRAPATHS not FILESEXTRPATHS * Add variables FILE_DIRNAME HOME LOGNAME SHELL TERM USER * Remove variables DATE and TIME (these are referred to by a number of tasks where they should affect the checksum, e.g. because they influence PV) * Remove variable _ (not found in dependencies) Additionally DATE and SRCDATE are excluded but only explicitly for patch_do_patch, which uses these only to provide a warning if patches are out of date. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* linux-yocto/stable: add blktrace configuration to standard branchBruce Ashfield2010-12-141-1/+1
| | | | | | | Enable the kernel configuration values required for blktrace by default. Individual boards can opt out as required. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* qemuppc: update 2.6.37 SRCREVBruce Ashfield2010-12-131-1/+1
| | | | | | | | | | Fixes [BUGID: 585] The qemuppc irq handling was only partially updated to 2.6.37, this completes the job. qemuppc builds and boots with this change. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* distro_tracking_fields: added missing quoteSaul Wold2010-12-101-1/+1
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* yocto-kernel: factor common routes, update to 2.6.37 and branch renamingBruce Ashfield2010-12-106-16/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In order to extend and create more kernel recipes based on the supported yocto kernel common routines need to be placed in re-usable blocks. To accomplish this meta/recipes-kernel/linux/linux-yocto_git.bb is broken into three parts: - meta/classes/kernel-yocto.bbclass: contains common routines for checking out and configuring a yocto kernel git repository. This should be inherited by recipes that need this functionality. - meta/recipes-kernel/linux/linux-yocto.inc: Contains the machine mappings, compatibility, build directives and common task definitions for a yocto kernel based recipe. This inherits kernel-yocto, and is the typical point of entry for other recipes. - meta/recipes-kernel/linux/linuux-tools.inc: tasks and function definitions for kernel recipes that want to build/export perf It also updates the linux-yocto recipe to default to 2.6.37. As part of the update to 2.6.37 the branch naming and conventions have been modified to show inheritance, and be more generic. For example: master meta yocto/base yocto/standard/arm_versatile_926ejs yocto/standard/base yocto/standard/beagleboard yocto/standard/common_pc/atom-pc yocto/standard/common_pc/base yocto/standard/common_pc_64 yocto/standard/fsl-mpc8315e-rdb yocto/standard/intel_atom_z530 yocto/standard/intel_core_qm57_pch yocto/standard/mti_malta32_be yocto/standard/preempt_rt/base yocto/standard/preempt_rt/common_pc yocto/standard/preempt_rt/common_pc_64 yocto/standard/preempt_rt/intel_atom_z530 yocto/standard/preempt_rt/intel_core_qm57_pch yocto/standard/qemu_ppc32 yocto/standard/routerstationpro In this structure: master: tracks the mainline kernel meta: meta information for the BSPs and kernel features yocto/base: baseline kernel branch yocto/standard/base: 'standard' kernel, contains features and configs for all BSPs yocto/standard/<machine>: represents a BSP with specific features or configurations The tools, tree and libc-headers have all been updated to deal with this new structure. Also in addition to dealing with the new structure, they continue to work with the existing tree and will adapt at runtime to the differences. The linux-yocto-stable_git.bb recipe continues to build the 2.6.34 based tree,and linux-yocto_git.bb builds 2.6.37. As boards are enabled for the new kernel they will move from -stable to the development kernel. As of now, only the emulated targets have moved to 2.6.37-rcX Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* udev: upgrade to version 164Qing He2010-12-101-1/+1
| | | | Signed-off-by: Qing He <qing.he@intel.com>
* sysprof: add system-wide performance profiler for Linux.Tom Zanussi2010-12-101-1/+2
| | | | | | [sgw@linux.intel.com: alpha'ed poky-default-revision.inc and fix commit message] Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* Drop variables that do nothingRichard Purdie2010-12-101-3/+0
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* task-cross-canadian: Ensure it reflects TARGET_ARCH in PNRichard Purdie2010-12-101-0/+2
| | | | | | | If this recipe doesn't reflect TARGET_ARCH in its name, only one flavour of cross toolchain can be installed at once. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* Using TRANSLATED_TARGET_ARCH instead of TARGET_ARCH.Lianhao Lu2010-12-101-0/+1
| | | | | | | | | | | Using TRANSLATED_TARGET_ARCH instead of TARGET_ARCH for cross-canadian packages. This is due to the TARGET_ARCH of x86_64 would results incorrect packaging in cross-canadian packages. The pacakge name appendix of x86_64 target in cross-canadian packages is x86-64. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
* poky.conf: move the SDK install into version directoriesJoshua Lock2010-12-091-1/+1
| | | | | | | | It's desirable to be able to have SDK toolchains installed from multiple versions of Poky, enable this by installing the toolchains into a subdirectory of /opt/poky/ based on the distro version. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* poky.conf: add more hash whitelistKevin Tian2010-12-091-1/+1
| | | | | | | | | | | | | DATE are referenced by patch_do_patch TIME are referenced by do_distro_check/do_checkpkg BBPATH/THISDIR/_ impacts the scenario when using different source path. DL_DIR/SSTATE_DIR are listed as dependency too, by pstaging_fetch FILESEXTRPATHS is referenced by .bbappend files Some tasks may not contribute to sstate packages, e.g. do_checkpkg. But for safety all of them are whitelist this time. Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* world-broken: Update with Clutter itemsSaul Wold2010-12-091-0/+5
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* distro_tracking: update gupnp, gst-ffmpeg, gst-fluendo-mp3, etc.Dongxiao Xu2010-12-091-10/+25
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* pulseaudio: upgrade to version 0.9.21Dongxiao Xu2010-12-091-0/+4
| | | | | | | There is a bug in pulseaudio uptream which uses new instructions on old arm platform. So we keep arm version of pulseaudio unchanged. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* poky.conf: add BB_TASKHASH to BB_HASHBASE_WHITELISTPaul Eggleton2010-12-071-1/+1
| | | | | | | | At the time of creating the hash, BB_TASKHASH can't really be valid and should be excluded from the environment variable list used to create the hash. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* sanity.bbclass: Warn people when TERMCMD is set to a non-installed programJoshua Lock2010-12-061-0/+7
| | | | | | | | | We default to gnome-terminal for TERMCMD (and TERMRUNCMD) so should check that this program actually exists during sanity checking. As a corollary document how to change these variables in the local.conf Signed-off-by: Joshua Lock <josh@linux.intel.com>
* local.conf.sample: Note extra variables required when disabling en_US localeJoshua Lock2010-12-061-0/+5
| | | | | | | When changing which locales are generated for libc it may also be neccessary to change IMAGE_LINGUAS and LIMIT_BUILT_LOCALES Signed-off-by: Joshua Lock <josh@linux.intel.com>
* preferred-xorg-versions: Update to match new versionsSaul Wold2010-12-061-3/+3
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* eee-acpi-scripts: Update to 1.1.11Zhai Edwin2010-12-061-1/+1
| | | | | | Rebased remove-doc-check.patch Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* distro_tracking_fields: update fields for devel/toolchain recipesNitin A Kamble2010-12-061-4/+0
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* web: Update to svn r129Zhai Edwin2010-12-061-1/+1
| | | | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* distro_tracking_fields: update fields for devel/toolchain recipesNitin A Kamble2010-12-061-21/+18
| | | | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* distro_tracking_fields.inc: update insserv and libatomics-opsScott Garman2010-12-061-5/+14
| | | | Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* Revert "qemugl: upgrade to git commit 33466cd83c2a9d7d3fb9fe437fb6a4d6fbd866b9"Saul Wold2010-12-031-2/+2
| | | | | | | | This reverts commit 4bcba3fb12bf2ea7ac952f97a44c8881703935dd. The qemugl is not building so I am reverting this update until it's resolved. Signed-off-by: Saul Wold <sgw@linux.intel.com>
* preferred-xorg-versions: updated for lastest package updatesSaul Wold2010-12-021-26/+26
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* world-broken: cleanup post reorg and world cleanupSaul Wold2010-12-021-46/+2
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* eds-tools: Fix SRCREV and add LIC_FILE_CHKSUMSaul Wold2010-12-021-0/+1
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* qemugl: upgrade to git commit 33466cd83c2a9d7d3fb9fe437fb6a4d6fbd866b9Yu Ke2010-12-021-2/+2
| | | | | | qemugl has no update since May 2009. Compared to current SRCREV, there is 3 new commit in upstream. So simply upgrade the SRCREV to the latest commit of May 2009, to include the 3 new commits. Signed-off-by: Yu Ke <ke.yu@intel.com>
* mesa-dri: upgrade from 7.8.2 to 7.9Yu Ke2010-12-021-1/+1
| | | | | | | | | | | | | with the following changes: - remove mesa-demos, because starting from mesa 7.9, mesa-demos becomes a standalone src tar ball in upstream, so there will be a seperate recipes to build the mesa-demos - add dependency of talloc and libxml2-native Signed-off-by: Yu Ke <ke.yu@intel.com>
* distro_tracking: gupnp-av, gupnp-tools, ofono, etc.Dongxiao Xu2010-12-021-34/+63
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* libgsmd: Upgrade to rev 5394Dongxiao Xu2010-12-021-1/+1
| | | | | | | Rebase fix_machine_init.patch to latest version. Fixed recipe metadata. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* wpa-supplicant: Upgrade to version 0.7.3Dongxiao Xu2010-12-021-1/+1
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* xf86-video-omapfb: add license checksumYu Ke2010-12-021-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* distro_tracking_fields.inc: update sudo, libpam, and mtoolsScott Garman2010-11-241-14/+17
| | | | Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* preferred-xorg-versions: Updated to reflect recipe updatesSaul Wold2010-11-241-22/+22
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* liberation-fonts: Added version 1.06, PREFERRED_VERSION is still 1.04Saul Wold2010-11-241-0/+3
| | | | | | | | The new recipe requires fontforge, which is not added yet, so the preferred version remains 1.04, when we have fontforge native then we can remove this. Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* blktrace: new packageTom Zanussi2010-11-221-0/+1
| | | | | | | Add blktrace, a tool for generating traces of the I/O traffic on block devices. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
* utility-tasks.bbclass: Move distro related tasks to distrodata.bbclassDongxiao Xu2010-11-221-1/+0
| | | | | | | | | | | Most of the d.keys() used in file parsing are variables in distro_tracking_fields.inc, which are not used in normal build. Therefore remove the inclusion of distro_tracking_fields.inc from poky.conf. Besides, move distro related tasks to distrodata.bbclass, which includes that tracking field file. By this change, the file parsing time could save about 25%. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* imake: upgrade from 1.0.2 to 1.0.4Yu Ke2010-11-221-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* distro tracking: Updates for libgpg-error...Zhai Edwin2010-11-221-41/+41
| | | | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* matchbox-panel-2: Update to svn r2111Zhai Edwin2010-11-221-1/+1
| | | | | | Also removed fix_sync_funcname.patch as we have it after update. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* libowl-av: Update to svn r416Zhai Edwin2010-11-221-1/+1
| | | | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* pixman: upgrade from 0.18.2 to 0.20.0Yu Ke2010-11-221-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* xrandr: upgrade from 1.3.2 to 1.3.4Yu Ke2010-11-221-1/+1
| | | | | | | | | Also remove the patch resolve_symbol_clash.patch, because the code it applies to has been removed from 1.3.4, by commit ccb3f8a42b: "Remove --clone / --extend support code", so this patch is no longer needed. Signed-off-by: Yu Ke <ke.yu@intel.com>
* xserver-xf86-dri-lite: upgrade from 1.9.0 rc4 to 1.9.2Yu Ke2010-11-221-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* xf86-video-intel: upgrade from 2.12.0 to 2.13.0Yu Ke2010-11-221-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* libdrm: upgrade from 2.4.21 to 2.4.22Yu Ke2010-11-221-1/+1
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* distro_tracking_fields.inc: update tar and opensshScott Garman2010-11-221-7/+8
| | | | | | | Updated to include recent tar upgrade. Also fixes inaccurate info in openssh. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* distro_tracking: Update distro tracking fields for pm-utils, netbase, etc.Dongxiao Xu2010-11-221-18/+38
| | | | | | | | | | | | pm-utils netbase mtd-utils glib-2.0 msynctool polkit polkit-gnome Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
OpenPOWER on IntegriCloud