summaryrefslogtreecommitdiffstats
path: root/meta
Commit message (Collapse)AuthorAgeFilesLines
* procps: fix for build against make 3.82Joshua Lock2010-11-122-1/+19
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* tcltk: Fix moving libtcl8.5.so into tcl-lib.Jingdong Lu2010-11-101-2/+2
| | | | | | Move /usr/lib/libtcl8.5.so into tcl-lib package. Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
* kernel: prefer the kernel produced uImageBruce Ashfield2010-11-101-1/+3
| | | | | | | | | | | | The custom uImage produced by the kernel classes by default does not universally boot and working with existing uboot configurations and setups. This changes the preference to the uImage constructed by the kbuild processes and falls back to the other techniques if uImage is requested by the kernel does not produce one. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* linux-wrs: rename force_revisions and allow overrideBruce Ashfield2010-11-101-3/+3
| | | | | | | | It is useful to override revision checking from a layer or other recipe. In order to show the global nature of the variable rename it KERNEL_REVISION_CHECKING and make it a weak assignment. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* wrs_meta: add USB options for wacom tablet supportBruce Ashfield2010-11-101-1/+1
| | | | | | | | | | Fixes [BUGID: #394] qemumips: Added wacom tablet support to mti_malta32_be bsp config Signed-off-by: J. Aaron Gamble <john.gamble@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* tslib: 32bit big endian supportJ. Aaron Gamble2010-11-103-3/+57
| | | | | | | | | | | Fixes [BUGID #394] patch added from: https://launchpad.net/ubuntu/+source/tslib/1.0-7 Enables wacom tablet/touchscreen support on qemumips Signed-off-by: J. Aaron Gamble <john.gamble@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* Added qemumips /etc/pointercal file for touchscreen calibrationJ. Aaron Gamble2010-11-101-0/+1
| | | | | | Fixes [BUGID #394] Signed-off-by: J. Aaron Gamble <john.gamble@windriver.com>
* quilt: Fixed configure test for patch --version.Beth Flanagan2010-11-102-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>
* poky.conf: Default Locale GenerationSaul Wold2010-11-101-3/+3
| | | | | | Add en-us and POSIX to default locale generation Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* eglibc: add en-us locale generationSaul Wold2010-11-102-1/+2
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* eglibc: install the missing /etc/ld.so.conf into targetDexuan Cui2010-11-101-1/+1
| | | | | | | | ${sysconfdir} should be added into FILES_${PN}. Fixes [BUGID #511] Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* ld.so.conf: create empty fileSaul Wold2010-11-101-2/+0
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* busybox: enable more options for tar to support more file formats.Dexuan Cui2010-11-101-7/+7
| | | | | | Fixes [BUGID #495] Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* bzip2: upgrade to version 1.0.6Qing He2010-11-103-0/+0
| | | | | | resolves security bug CVE-2010-0405 Signed-off-by: Qing He <qing.he@intel.com>
* imagetest-qemu: Add test case for dmesg check in targetJiajun Xu2010-11-101-2/+4
| | | | | | | | Add a test case for error log check with command dmesg in target. The case introduces a new folder in target, "/opt/test", which holds test scripts running in target. Signed-off-by Jiajun Xu <jiajun.xu@intel.com>
* poky.conf: Change default locale to POSIXSaul Wold2010-11-101-2/+4
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* task-sdk-gmae: fix typo in SDK-EXTRAS and convert to ?= for assignmentSaul Wold2010-11-102-8/+8
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* python: Fix hardcoded python references which should refer to PN, removing ↵Richard Purdie2010-11-101-2/+2
| | | | | | duplicate providers warning Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* busybox: import upstream patch for make 3.82Joshua Lock2010-11-092-1/+27
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* eglibc: fix build of eglibc-initial for make 3.82Joshua Lock2010-11-092-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>
* package.bbclass: make sure 'sysroots' created before lockfileKevin Tian2010-11-071-0/+1
| | | | | | | | package sstate requires a lock under sysroots/, which however may not be created when sstate_setscene functions are executed and then causes failures. here we make sure 'sysroots' created before do_package_setscene is executed. Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* poky.conf: add PWD to BB_HASHBASE_WHITELISTKevin Tian2010-11-071-1/+1
| | | | | | | | | | | | | | | | | Without doing this I can't reuse prebuilts generated from one directory in another build directory which is really not comfortable for developers. Due to difference on PWD variable, base hash becomes different for every sstate package. So here PWD is added to the hase base whitelist, which makes most prebuilts reusable now in a different build directory. However there still remains one issue about do_populate_sysroot sstate package. Absolute path is encoded in this task which then blocks reuse on them. Perhaps we need some redesign for do_populate_sysroot into two stages, with all absolute path related operations moved to the 2nd stage. This way then the 1st stage can be reused. Partially fix [BUGID #522] Signed-off-by Kevin Tian <kevin.tian@intel.com>
* meta/classes: Mark do_package_write and do_build as noexec tasksRichard Purdie2010-11-062-0/+2
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* cross-canadian bbclass: replace hardcoded -pokysdk with SDK_VENDORKoen Kooi2010-11-031-1/+1
| | | | | Signed-off-by: Koen Kooi <k-kooi@ti.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* openssl: Use STAGING_BINDIR_NATIVE as the path to perl, not bindir which can ↵Richard Purdie2010-11-031-1/+1
| | | | | | point to incorrect places Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* sstate: Provide a temporary mechanism to stop collisions between toolchain ↵Richard Purdie2010-11-021-1/+27
| | | | | | components in builds from scratch using sstate Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* external-python-tarball: Include SDKMACHINE in tarball nameRichard Purdie2010-11-021-1/+1
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* external-python-tarball: Add ability to generate an externally usable ↵Richard Purdie2010-11-021-0/+87
| | | | | | standalone python tarball Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* openssl/db/gdbm: Extend to provide BBCLASSEXTEND nativesdkRichard Purdie2010-11-023-3/+3
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* python: Remove hardcoded python references and replace with PN, allowing use ↵Richard Purdie2010-11-022-208/+208
| | | | | | of BBCLASSEXTEND=nativesdk Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* base/utils.bbclass: Sync up overlapping functionsRichard Purdie2010-11-022-20/+2
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* utils.bbclass: Add functions from OE.devRichard Purdie2010-11-021-5/+92
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* gnome.bbclass: Remove autotools_stage referenceRichard Purdie2010-11-021-1/+1
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* gnome.bbclass: Use BPN instead of PN and set SRC_URI name similar to OE.devRichard Purdie2010-11-021-3/+4
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* base-files: Allow a basic issue file to be extended by the code, following ↵Richard Purdie2010-11-023-10/+3
| | | | | | the method now used by OE Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* base-files: Allow issue and hostname generation to be overriddenRichard Purdie2010-11-021-22/+27
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* src_distribute: Set EXPORT_FUNCTIONS correctlyRichard Purdie2010-11-011-0/+2
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* Poky -> Yocto name changeRichard Purdie2010-10-272-5/+5
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* rm_work.bbclass: Handle case where pseudo directory doesn't existRichard Purdie2010-10-231-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>
* Fix adding new contact failure when starting contacts for the 1st timeZhai Edwin2010-10-222-1/+23
| | | | | | | | | | | | When contacts called for the 1st time, adding new contact always failed but worked after restart. The reason is e-addressbook-factory used to handle addressbook leads a segmentation fault. Root cause is that factory would create the data base if not exist, but use it without proper initialization. [BUGID #455] got fixed by this. Signed-off-by: Zhai Edwin <edwin.zhai@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>
* at: Fix nonstripbinaries.patchMark Hatle2010-10-221-3/+3
| | | | | | | | The commit '0e0d14ed1e88ebff876abb3d00b08627a3879e8d' introduced a new patch nonstripbinaries.patch, the filename format caused the patch to not apply. Simple fix made by correcting the path. Signed-off-by: Mark Hatle <mark.hatle@windriver.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>