summaryrefslogtreecommitdiff
path: root/meta
AgeCommit message (Collapse)AuthorFiles
2010-09-29update-alternative.bbclass: add batch alternatives supportKevin Tian1
With new batch ability, we can use below simple 2 lines for multiple alternatives updates: ALTERNATIVE_LINKS = "${bindir}/cmd1 {sbindir}/cmd2 ..." ALTERNATIVE_PRIORITY = "100" Then for each command "/path/cmd" listed in ALTERNATIVE_LINKS, below is done automatically: ${D}/path/cmd is renamed to ${D}/path/cmd.{PN} a new alternative named 'cmd' is created which: links /path/cmd to /path/cmd.{PN} with priority specified in ALTERNATIVE_PRIORITY This way the recipe with multiple alternatives could be simplified a lot. There are still some cases where above assumptions may break, but I expect more recipes should benefit from this simple enhancement Fix [BUGID #257] Signed-off-by: Kevin Tian <kevin.tian@intel.com>
2010-09-29e2fsprogs: Don't change ownership of the patches directoryGary Thomas1
Patches can be symlinks and changing their ownership may not be possible. Therefore stop doing this. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-29gstreamer: Ensure correct orcc version is usedGary Thomas1
Taken from a patch from the OE list posted by Michael Smith, submitted to Poky by Gary Thomas. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-29sstate.bbclass: Add signature hash to sstate package namesRichard Purdie1
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-29sstate.bbclass: Update to use SSTATE variables everywhere and remove the now ↵Richard Purdie5
unneeded complicated paths from the sstate files Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-29sstate.bbclass: pstage -> sstate name changes (no global implications)Richard Purdie1
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-29sstate.bbclass: Rename PSTAGE2 -> SSTATERichard Purdie1
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-28connman: fix the issue that connman could not disconnect from shutdown APDongxiao Xu3
Upstream has a fix for MeeGo/Carrick which has the same phenomenon as our side, therefore port the patch into poky. This fixes [BUGID #266] and [BUGID #267]. Remove the option "--enable-fake" since it sometimes causes offline mode failure. Launch connmand in initlevel 3. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
2010-09-28task-poky-basic.bb: fix lighttpd typoSaul Wold1
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-28task-poky-basic.bb: add lighttp to basic image type for webserverSaul Wold1
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-28local.conf.sample: set RPM as default package and rootfs image creationSaul Wold1
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-28lighttpd: Add 1.4.28 as new recipe.Zhai Edwin4
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
2010-09-27iproute2: Disable PARALLEL_MAKESaul Wold2
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-27eglibc: add FILESPATH to avoid failure on unpackDexuan Cui1
Actually Kevin identified the issue: without this fix, "bitbake eglibc-initial-nativesdk" would fail on unpack. Signed-off-by: Kevin Tian <kevin.tian@intel.com> Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
2010-09-27poky-default.inc: change the hardcoded glibc-initial to ${POKYLIBC}-initialDexuan Cui1
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
2010-09-27distro_tracking_fields.inc: update cpio infoScott Garman1
Reflects current status of cpio recipes. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2010-09-27cpio: add version 2.11 (GPLv3)Scott Garman2
This is the most recent version of cpio. Recipe derived from OpenEmbedded's recipe for cpio v2.5. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2010-09-27trace-cmd_git.bb: remove DEPENDS of glibc since there is a system default forSaul Wold1
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-27distro_tracking_fields.inc: update grep infoScott Garman1
Reflects current status of grep, including new recent release information. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2010-09-27grep: add version 2.7 (GPLv3)Scott Garman1
This is the most recent version of grep. Recipe derived from OpenEmbedded's recipe for grep v2.6.3. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2010-09-27task-poky-clutter.bb: removed examplesSaul Wold1
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-27distro_tracking: Update tracking infoSaul Wold1
Add additional aliases and tracking fields for missing packages Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-27distro_check.py: Added additional support for distro checkingSaul Wold1
Now tells which section a macth occurs (main vs contrib) Keywords for Poky, OpenedHand, ... Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-27QEMU: Fix the mouse shadow issue (bug 170)Yu Ke2
the root cause is that the qemu cursor array is hardcoded to 256 bytes, while the sato use cursor of the size 64*64=4096, thus lead buffer overflow and abnormal mouse. A qemu patch is introduced to dynamically allocate qemu cursor array to fix this issue. BTW, qemu upstream already redesign the cursor interface and implementation, and this issue does not occur in upstream, so no need to push this patch to upstream. and when upgrade the qemu, this patch can be safely removed. Fix [BUGID #170] Signed-off-by: Yu Ke <ke.yu@intel.com>
2010-09-27qemux86-64: remove -march for 64bit common pcQing He1
Fixes [BUGID #347]. Signed-off-by: Qing He <qing.he@intel.com>
2010-09-27task-poky-tools: add rsync in target imageQing He1
rsync is needed by debugging using SDK, add it as dependency of task-poky-tools-debug, this fixes [BUGID #345] Signed-off-by: Qing He <qing.he@intel.com>
2010-09-27glibc & eglibc: fix mips DT_MIPS_RLD_MAP checkingQing He4
On mips target, binutils currently sets DT_MIPS_RLD_MAP to 0 in dynamic section if a --version-script sets _RLD_MAP to local. This is apparently a binutils bug, but libc shouldn't segfault in this case. Add sanity check on the entry to avoid segfault, fixes [BUGID #287]. Signed-off-by: Qing He <qing.he@intel.com>
2010-09-27gcc: enable poison parameters detectionDongxiao Xu28
If not configured with --enable-target-optspace, gcc will report errors if there is '-Os' optimization in parameters. This fixes [BUGID #342] Also add "--enable-target-optspace" option to arm gcc configuration. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
2010-09-27xtscal: Fix the endless loop when starting XZhai Edwin1
xtscal script in Xsession.d would lead endless loop if /etc/pointercal is missing, which make the system hang. This fix adds a counter for loop. [BUGID #251] got fixed by this. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
2010-09-24netbook: Correct netbook build by moving netbook configuration from moblin ↵Saul Wold100
to meta Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-24taglib: move from moblin to recipes-support to support qmmpSaul Wold3
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-23man-pages_3.25.bb: Fix SRC_URI to contain Archive directorySaul Wold1
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-22distro_tracking_fields.inc: merged fixesSaul Wold1
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
2010-09-22upgrade gcc to 4.5.0 for mips architectureDongxiao Xu7
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>
2010-09-22meta-ide-support: Fix PKG_CONFIG_SYSROOT_DIR and PKG_CONFIG_PATHDongxiao Xu1
Fix PKG_CONFIG_SYSROOT_DIR and PKG_CONFIG_PATH to make them point to the correct directory path. This fixes [BUGID #340]. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
2010-09-22qemuarm: remove NFS_ROOT overrideBruce Ashfield1
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>
2010-09-22Add DISTRO_PN_ALIAS for 95 packagesYu Ke1
Signed-off-by: Yu Ke <ke.yu@intel.com> Signed-off-by: Mei Lei <lei.mei@intel.com>
2010-09-22[#BUG298]:Fix some bugs during compiling based on x86_64Xiaofeng Yan1
fix a problem that compliation failed for groff on machine x86_64 Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
2010-09-21bitbake.conf/documentation.conf: Start using SUMMARY variable and document itRichard Purdie2
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-21Correct js jsautocfg.h and install jsproto.tblDarren Hart2
I'm adding mediatomb packages and ran into a couple build issues with js. The first complained that jsapi.h wasn't found/usable. This turned out to be because jsautocfg.h was including "../conf.h" instead of "conf.h" as they are installed in the same directory in the sysroot. I believe the correct fix for this would involve the configure.ac script which is used to generate the jsautocfg.h header file we store in the recipe. Commit f25d26de776f9927e1d2c92f031085a9b9323087 (js: fix configure) added conf.h, Qing can you comment here? The second failure is due to jsproto.tbl not being installed but being referenced by another header file. This patch corrects the jsautocfg.h header directly and adds the jsproto.tbl to the do_install() recipe function. Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Qing He <qing.he@intel.com>
2010-09-21poky.conf: use eglibc rather than glibcDexuan Cui1
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
2010-09-21[e]glibc-package.inc: fix multiple providers for glibc-gconv-iso8859-1Dexuan Cui4
This commit fixes the following error while doing this: bitbake poky-image-sato ERROR: Conflicting PREFERRED_PROVIDER entries were found which resulted in an attempt to select multiple providers (['virtual:nativesdk:/distro/dcui/dexuan/meta/recipes-core/eglibc/eglibc_2.12.bb', '/distro/dcui/dexuan/meta/recipes-core/eglibc/eglibc_2.12.bb']) for runtime dependency glibc-gconv-iso8859-1 The entries resulting in this conflict were: ['PREFERRED_PROVIDER_virtual/libc-nativesdk = eglibc-nativesdk', 'PREFERRED_PROVIDER_virtual/libc = eglibc'] NOTE: multiple providers are available for runtime glibc-gconv-iso8859-1 (eglibc, eglibc-nativesdk, glibc-nativesdk, glibc, external-csl-toolchain, external-poky-toolchain) NOTE: consider defining a PREFERRED_PROVIDER entry to match glibc-gconv-iso8859-1 And bumped PR. This partly fixes [BUGID #329] Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
2010-09-21poky-eglibc.inc: fix multiple providers for virtual/libc-nativesdk and otherDexuan Cui2
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>
2010-09-21linux-wrs: update SRCREVsBruce Ashfield1
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>
2010-09-21zypper: fix runtime dependencyQing He1
add procps as runtime recommendation, since pgrep is used by zypper binary Signed-off-by: Qing He <qing.he@intel.com>
2010-09-21libzypp: RDEPENDS sat-solverQing He1
rpmdb2solv provided by sat-solver is executed from within libzypp, RDEPENDS sat-solver to get the utility included, fixes [BUGID #328] Signed-off-by: Qing He <qing.he@intel.com>
2010-09-21eglibc: Add in libc_cv_slibdir setting as used by glibc to fix 64 bit buildsRichard Purdie1
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-20recipes-tbd: Drop old external CSL toolchains and no obsolete ↵Richard Purdie3
staging-linkage recipe Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-20Complete packages -> recipes transitionRichard Purdie26
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-09-17distro_track: add dpkg, m4, and cmake tracking fieldsDongxiao Xu3
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>