summaryrefslogtreecommitdiffstats
path: root/meta
Commit message (Collapse)AuthorAgeFilesLines
* Set release to correct version: poky.conflaverne-4.0.1Beth Flanagan2011-02-041-1/+1
| | | | | | Correcting release version in poky.conf Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com>
* Setting Yocto rev number to 4.1: poky.confBeth Flanagan2011-02-031-1/+1
| | | | | | | Found just prior to mirror push. Modified poky.conf to use the correct version. Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com>
* quilt: Fixed configure test for patch --version.Beth Flanagan2011-01-142-1/+21
| | | | | | | OpenSuSE 11.3 uses GNU patch 2.6.1.81-5b68 which breaks quilt's configure test for patch version. Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com>
* image.bbclass: Use the dedicated BB_WORKERCONTEXT, not bitbake internals to ↵Richard Purdie2011-01-141-1/+1
| | | | | | detect context Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* openssl: restore -Wall flagPaul Eggleton2010-12-162-2/+2
| | | | | | | | The -Wall flag was unintentionally removed from the end of the CFLAG var in 089612794d4d8d9c79bd2a4365d6df78371f7f40 by me. This patch puts it back in. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* web-webkit: fix for make 3.82Joshua Lock2010-12-152-2/+18
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* contacts: fix for make 3.82Joshua Lock2010-12-152-2/+17
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* dates: fix for Make 3.82Joshua Lock2010-12-152-2/+19
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* owl-video-widget: fix Makefile for super strict make 3.82Joshua Lock2010-12-152-1/+17
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* libowl-av: fix for Make 3.82Joshua Lock2010-12-142-2/+14
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* gst-plugins: fix for make 3.82Joshua Lock2010-12-146-5/+33
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* gstreamer: fix to comply with make 3.82's stricter parserJoshua Lock2010-12-142-3/+36
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* linux-libc-headers: fix for Make 3.82Joshua Lock2010-12-143-5/+42
| | | | | | | Fix the kernel Makefile for use with Make 3.82 by splitting mixed implicit and normal rules into separate rules. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* busybox: additional fixes for Make 3.82Joshua Lock2010-12-141-6/+37
| | | | | | | There where still some mixed implicit and normal rules in the Busybox Makefile, Update our existing make-382.patch to split these into separate rules. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* procps: fix for build against make 3.82Joshua Lock2010-12-102-1/+19
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* busybox: import upstream patch for make 3.82Joshua Lock2010-12-102-1/+27
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* eglibc: fix build of eglibc-initial for make 3.82Joshua Lock2010-12-102-2/+28
| | | | | | | Make 3.82, as shipped with Fedora 14, fixes some holes in the parser which in turn breaks behaviour of some Makefiles. Most notably eglibc's. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* qemu: fix failure to find zlib header files during configurePaul Eggleton2010-12-102-1/+22
| | | | | | | | | Corrects problems during configure of qemu-native due to the BUILD_CFLAGS not being included when attempting to compile the test program for zlib within the configure script. Signed-off-by: Paul Eggleton <paul.eggleton@intel.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* openssl-native: disable execstack flag to prevent problems with SELinuxPaul Eggleton2010-12-102-2/+6
| | | | | | | | | The execstack flag gets set on libcrypto.so by default which causes SELinux to prevent it from being loaded on systems using SELinux, which includes Fedora. This patch disables the execstack flag. (Note: Red Hat do this in their openssl packaging.) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* rm_work.bbclass: Handle case where pseudo directory doesn't existRichard Purdie2010-10-221-1/+3
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* package_deb: The packaging command itself is run under fakeroot so these ↵Richard Purdie2010-10-221-2/+0
| | | | | | lines are totally unneeded Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* classes: Only enable fakeroot on setscene tasks with packagingRichard Purdie2010-10-225-5/+4
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* sstate: Fix mirror handling for file:// urlsRichard Purdie2010-10-221-4/+11
| | | | | | | | | | The fetcher has special handling for file:// mirror urls, being efficient and just providing an updated path. Unfortunately the sstate fetching code wasn't able to handle this. This patch detects this and injects a symlink to ensure everything works. It also fixes some datastore references to be correct and ensures the sstate download directory exists if it doesn't already. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* pseudo/fakeroot: Move the pseudo directory creation into bitbakeRichard Purdie2010-10-226-1/+6
| | | | | | | | | | | | | | If sstate was used to accelerate a build, the pseudo directory might not have been created leading to subsequent task failures. Also, sstate packages were not being installed under pseudo context meaning file permissions could have been lost. Fix these problems by creating a FAKEROOTDIRS variable which bitbake ensures exists before running tasks and running the appropriate setscene tasks under fakeroot context. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* package_deb: Fix a typo meaning the debian packaging was not running in the ↵Richard Purdie2010-10-221-1/+1
| | | | | | fakeroot evnironment Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* package_rpm: Don't check for the existence of dvar as its never usedRichard Purdie2010-10-221-6/+1
| | | | | | | | | | | If a sstate package exists for the package task but not for the rpm packaging task, the output from the package task will be used. The directory pointed to by dvar will not exist under this scenario. Since the directory is never used by the packaging process remove the check, substituting the pkgd variable which is always present and used. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* base.bbclass: Ensure an empty do_build tasks exists to silence a warningRichard Purdie2010-10-221-0/+3
| | | | | | | The message "WARNING: Function do_build doesn't exist" doesn't look professional, so fix the underlying problem even if this warning is harmless. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* sstate: Fix broken plaindirs supportRichard Purdie2010-10-221-2/+6
| | | | | | | | | | | When installing a sstate package, directories tracked by plaindirs were being installed to the incorrect location. With the current implementation this was limited to the do_package task. This patch ensures plaindirs tracked files are created in the correct location, fixing the bug where these files would go missing. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* libtheora: add DEPENDS on liboggDexuan Cui2010-10-221-1/+3
| | | | | | | | | This is used to fix the following build failure: checking for oggpackB_read... no | configure: error: newer libogg version (1.1 or later) required Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* base/sstate: Add cleanall task to remove downloads and sstate cached filesRichard Purdie2010-10-222-5/+44
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* local.conf.sample: Default to not building 32 bit libs on 64 bit systems as ↵Richard Purdie2010-10-221-0/+5
| | | | | | most people don't need it and it confuses them Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* metadata_scm: Ensure that if an SCM isn't present, we dont print a revision ↵Richard Purdie2010-10-221-3/+6
| | | | | | of 'fatal:' as it looks bad Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* Yocto Project 0.9 - Poky Laverne 4.0 ReleaseSaul Wold2010-10-211-2/+2
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* mpc8315e-rdb: align PACKAGE_EXTRA_ARCHS with tuningBruce Ashfield2010-10-211-1/+1
| | | | | | | | | | | | Fixes [BUGID #500] While the tuning for the mpc8315e is 603e, the PACKAGE_EXTRA_ARCHES was ppce300. This created a mismatch and resulted in rootfs assembly issues due to missing locales. We align both at 603 and can revist a better tuning in the future. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* poky.conf: Update DISTRO_NAME and DISTRO_VERSION for the Yocto Project ReleaseSaul Wold2010-10-182-4/+4
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* rpm: Change pcre to use internal library [BUGID #404]Saul Wold2010-10-181-2/+2
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* sed: use ALTERNATIVE_LINKKevin Tian2010-10-182-2/+4
| | | | | | | | | | | | | update-alternatives.bbclass assumes /usr/bin/sed if ALTERNATIVE_LINK is not specified, however sed has changed its default installation directory to /bin/sed. This causes below errors at the first boot of lsb image: update-alternatives: Error: cannot register alternative sed to /usr/bin/sed since it is already registered to /bin/sed This fixes [BUGID #478] Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* gstreamer: add support for theora pluginsDongxiao Xu2010-10-184-4/+32
| | | | | | | Add theora codec and its corresponding lib recipe (import from OE). This fixes [BUGID #476]. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* wrs_meta: update SRCREV for netfilter optionsBruce Ashfield2010-10-181-1/+1
| | | | | | | | | | | Fixes [BUGID #199] Updating the SRCREV for wrs_meta to import a set of default netfilter options, which can then be applied to any BSP. This keeps the default BSP configs small, while allowing the functionality to be available. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* kernel tools: update SRCREVBruce Ashfield2010-10-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Fixes [BUGID #199] To allow optional features to be enabled for a given BSP, we need to re-enable this functionality in the kernel tools. The following commit in that repo fixes a problem when passing feature names: [ commit 140693a6b0d81b7ba7175b6cfce11c6c22f81e24 Author: Bruce Ashfield <bruce.ashfield@windriver.com> Date: Sun Oct 17 01:22:00 2010 -0400 updateme: do not expand directories If a directory is passed to updateme, do NOT expand it to a full path, the compilation phase will search and do this while applying some special logic to find properly named features. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* linux-wrs: pass netfilter options as an addon featureBruce Ashfield2010-10-181-0/+1
| | | | | | | | | | | | Fixes [BUGID #199] Although an optional feature to a base BSP, most of the machines currently supported want/need the netfilter options. To enforce this configuration, it is temporarily forced in the kernel recipe itself, but can move to machine configurations in the future. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* linux-wrs: allow optional features via KERNEL_FEATURES variableBruce Ashfield2010-10-181-2/+5
| | | | | | | | | | | | | | | | | | | | Fixes [BUGID #199] Reinstate the ability to specify optional/additional kernel features when updating the tree. This is done via the variable KERNEL_FEATURES which specifies a list of features to be appended to the current branch and config. These features are part of the wrs_meta branch in the kernel repository and hence are self contained within the kernel tree waiting to be activated. This saves multiple branches simply to allow a machine to have many profiles. The kernel patching/configuration phases will locate these features and add them to the meta_series, which in turn modifies the tree. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* distrodata: Modify Distro tracking spreadsheetSaul Wold2010-10-153-19/+60
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* distro_tracking: Update Distro AliasesSaul Wold2010-10-151-32/+60
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* task-poky-sdk: Add lttng-ustRichard Purdie2010-10-153-2/+11
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* libtasn1: Comment out the RREPLACES as it causes problems with rpm backendRichard Purdie2010-10-151-2/+2
| | | | | | | | | Since we've never distributed binary feeds this isn't a problem for now for Poky and as it stands this line breaks images. [BUGID #442] Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* poky.conf: Add qemu-config dependency for qemux86-64Richard Purdie2010-10-151-0/+1
| | | | | | | | | After booting qemux86-64 sato image, there is no icon for shutdown on the desktop which is caused by missing the qemu-config package on this machine. [BUGID #458] Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* shared-mime-info: Don't run the util for the native version of the packageRichard Purdie2010-10-151-5/+11
| | | | | | | | | | | The whole point of building a native version of this package is to provide the share-mime-info binary so using it in do_install of the native package is incorrect. Add a modified do_install for the native version of the package to avoid this. [BUGID #466] Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* libffi: fix the uriJoshua Lock2010-10-151-1/+1
| | | | | | It had the previous version hard-coded Signed-off-by: Joshua Lock <josh@linux.intel.com>
* Use gdk_threads_enter/gdk_threads_leave to ensure gtk multithread safeDongxiao Xu2010-10-159-1/+40
| | | | | | | | | | | If the video player tries to play an unknown type file, it will enter the error_cb() function, which is called in another thread. Use gdk_threads_enter/gdk_threads_leave to ensure the safe of gtk multi-thread operation. This fixes [BUGID #474] Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>