summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Rename the remaining poky-* scripts to oe-* or runqemu-*Richard Purdie2011-04-2017-26/+27
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Catch task-poky -> task-core renamingRichard Purdie2011-04-203-8/+8
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Fix git.pokylinux.org urls to git.yoctoproject.orgRichard Purdie2011-04-2018-19/+19
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* .gitignore: Drop stale entriesRichard Purdie2011-04-201-15/+0
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* distro_tracking_fields.inc: Replace Poky with OE-CoreRichard Purdie2011-04-201-64/+64
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* poky-setup-builddir: Rename to oe-setup-builddir and clean up POKY variable ↵Richard Purdie2011-04-202-19/+19
| | | | | | references Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Replace POKY_KVM_WIKI -> YOCTO_KVM_WIKIRichard Purdie2011-04-201-4/+4
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* POKY_NATIVE_SYSROOT -> OECORE_NATIVE_SYSROOTRichard Purdie2011-04-209-36/+36
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oe-init-build-env: Fix typoRichard Purdie2011-04-201-1/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Rename poky-image-* -> core-image-* and task-poky-* -> task-core-*Richard Purdie2011-04-2091-548/+548
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Replace POKYBASE with COREBASERichard Purdie2011-04-2062-110/+110
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* local.conf.sample: Sanitise Poky references as discussed at the TSC meetingRichard Purdie2011-04-201-33/+3
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Remove obsolete scripts/classesRichard Purdie2011-04-203-262/+0
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Rename poky-qemu to runqemuRichard Purdie2011-04-2020-39/+39
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Rename poky-init-build-env to oe-init-build-envRichard Purdie2011-04-205-6/+6
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* initscripts: Drop outdated machine specific filesRichard Purdie2011-04-206-557/+0
|
* Drop documentation directory, this is replaced by the new yocto-docs repositoryRichard Purdie2011-04-2087-18286/+0
|
* kernel-rt: use correct branch names and new git SRC_REV formatDarren Hart2011-04-201-7/+5
| | | | | | | | | | The RT kernel recipe was not updated to reflect the new git SRC_REV format nor to take advantage of the recent updates made to the underlying infrastructure. These fixes bring it up to date with the other linux-yocto* recipes and fix various build issues people were seeing. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Cc: Bruce Ashfield <bruce.ashfield@windriver.com>
* clutter-1.6: update to 1.6.14Joshua Lock2011-04-201-4/+4
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* clutter-1.6: drop no longer required patchJoshua Lock2011-04-191-3/+2
| | | | | | The test-conformance-fix.patch is no longer required for clutter-1.6 Signed-off-by: Joshua Lock <josh@linux.intel.com>
* json-glib: new recipe required by clutterJoshua Lock2011-04-191-0/+20
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* linux-yocto-stable: Update repository urlRichard Purdie2011-04-191-1/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel: Remove debug statementsDarren Hart2011-04-191-2/+0
| | | | | | | | | | | | | | | | A stray echo and du command from my development of the following patch remain in kernel.bbclass. Remove them. commit 3b49416fc7a7ee9bfe722f2e6089aa18df41dc58 Author: Darren Hart <dvhart@linux.intel.com> Date: Tue Mar 8 17:09:10 2011 -0800 kernel/bbclass: rework kernel and module classes to allow for building out-of-tree modules Signed-off-by: Darren Hart <dvhart@linux.intel.com> Cc: Tom Zanussi <tom.zanussi@intel.com> Cc: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel: Copy over bzImage to sysroots during installDarren Hart2011-04-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes [Yocto #987] The following commit introduced a build failure: Commit 3b49416fc7a7ee9bfe722f2e6089aa18df41dc58 Author: Darren Hart <dvhart@linux.intel.com> Date: Tue Mar 8 17:09:10 2011 -0800 kernel/bbclass: rework kernel and module classes to allow for building out-of-tree modules Resulting in: | install: cannot stat `/usr/local/test/intel-bsp/build/tmp/sysroots/n450/kernel/bzImage': No such file or directory | ERROR: Function 'build_boot_bin' failed (see /usr/local/test/intel-bsp/build/tmp/work/core2-poky-linux/poky-image-minimal-live-1.0-r0/temp/log.do_bootimg.1106 for further information) The bzImage file was not being copied to sysroot, correct that. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Cc: Tom Zanussi <tom.zanussi@intel.com> Cc: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* psmisc: Upgrade from 22.2 to 22.13Mei Lei2011-04-183-20/+21
| | | | | | Modify the libintl-link.patch because the upstream removed old fuser in 22.7 Signed-off-by: Mei Lei <lei.mei@intel.com>
* e2fsprogs: Upgrade from 1.41.12 to 1.41.14Mei Lei2011-04-184-3/+10
| | | | Signed-off-by: Mei Lei <lei.mei@intel.com>
* libidn: upgrade from 1.19 to 1.20Mei Lei2011-04-181-4/+4
| | | | Signed-off-by: Mei Lei <lei.mei@intel.com>
* distro tracking: reassign Kevin's recipeYu Ke2011-04-181-33/+33
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* mesa: cleanup and remove the old version 7.5, 7.7 and 7.8.2Yu Ke2011-04-185-153/+4
| | | | | | | | | - mesa 7.8.2 is kept to have a version without GPLv3 talloc. now 7.10.2 has removed the talloc, 7.8.2 can be removed safely. - mesa 7.5 and 7.7 is a legacy recips from original poky, also can removed. - mesa-dri-glsl-native_7.8.2 is a dependecy recipe only used by mesa 7.8.2, should also be removed along with mesa 7.8.2 - aslo update the patch upstream status Signed-off-by: Yu Ke <ke.yu@intel.com>
* mesa 7.10.2: add python-native dependencyYu Ke2011-04-181-1/+1
| | | | | | | | | As Tom point out, mesa 7.10 has introduce some python script (e.g. src/mesa/main/es_generator.py), so should add python-native dependency Signed-off-by: Yu Ke <ke.yu@intel.com> CC: Tom Rini <tom_rini@mentor.com>
* python-dir.bbclass: define default PYTHON_BASEVERSIONMartin Jansa2011-04-181-0/+1
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* x11vnc: fix SRC_URIKoen Kooi2011-04-181-1/+1
| | | | | | | The download structure got changed at some point and made this recipe unfetchable Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* jpeg: add link libjpeg.so.62 for LSB library testKang Kai2011-04-181-1/+12
| | | | | | | | LSB test just test whether libjpeg.so.62 exists, and no more use of it. So just make link to pass library check. Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* slang: Update to 2.2.4Saul Wold2011-04-182-19/+10
| | | | | | | | | - Removed fix-uclibc.patch as it's no longer required by the upstream - Removed requirment for png as we only need limited support for slang - fix license - disable Parallel Make Signed-off-by: Saul Wold <sgw@linux.intel.com>
* netbase: add /etc/network/interfaces file for qemumips & qemuppcPaul Eggleton2011-04-182-0/+16
| | | | | | | This fixes the network configuration for qemumips & qemuppc to match the other qemu* machines. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* netbase: automatically bring up eth0Paul Eggleton2011-04-181-0/+1
| | | | | | | | | This avoids manual configuration for those machines that do not override the default /etc/network/interfaces file. Fixes [YOCTO #875] Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* documentation/kernel-manual/kernel-how-to.xml: replaced 'pokylinux' with ↵Scott Rifenbark2011-04-181-2/+2
| | | | | | 'yoctoproject' Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
* documentation/adt-manual/adt-eclipse.xml: Fixed URL with pokylinux.orgScott Rifenbark2011-04-181-1/+1
| | | | | | | Substituted 'pokylinux.org' with 'yoctoproject.org' in an URL to locate the OProfile viewer and server. Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
* documentation/adt-manual/adt-prepare.xml: Fixed URL for nightly buildsScott Rifenbark2011-04-181-1/+1
| | | | | | | There was a stray "0.9" in an URL for the Yocto source downloads. I changed it to 1.0. Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
* rsync: upgrade to version 3.0.8Qing He2011-04-181-3/+3
| | | | | | | | | [YOCTO #983] from 3.0.7 fixes CVE-2011-1097 Signed-off-by: Qing He <qing.he@intel.com>
* openssl: upgrade to version 0.9.8rQing He2011-04-1825-4/+9
| | | | | | | | | [YOCTO #979] from 0.9.8p fixes CVE-2010-4180, CVE-2010-4252, CVE-2010-0014 Signed-off-by: Qing He <qing.he@intel.com>
* libxml2: upgrade to version 2.7.8Qing He2011-04-183-6/+8
| | | | | | | | | [YOCTO #978] from 2.7.7 fixes CVE-2010-4008 Signed-off-by: Qing He <qing.he@intel.com>
* libexif: upgrade to 0.6.20Qing He2011-04-181-3/+3
| | | | | | | | [YOCTO #977] fixes CVE-2007-6351, CVE-2007-6352, CVE-2009-3895 Signed-off-by: Qing He <qing.he@intel.com>
* poky-lsb: Add "largefile" feature for LSB distro.Jingdong Lu2011-04-181-1/+1
| | | | | | | Add "largefile" feature for LSB distro. Fixes [YOCTO #794] Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
* gcc: Add "--enable-clocale=gnu" option for LSB.Jingdong Lu2011-04-181-1/+2
| | | | | | | | Add "--enable-clocale=gun" option for gcc configuration explicitly for LSB distro in order to make sure C++ library can use correct locale module. Fixes [YOCTO #796] Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
* task-poky-lsb.bb:Add locale resoures which is needed by LSB Test SuiteXiaofeng Yan2011-04-181-6/+4
| | | | | | Owning to absent locale resources in lsb-image, I add them to task-poky-lsb.bb Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* qemu: Fix the qemu GL application start failure.Zhai Edwin2011-04-182-0/+74
| | | | | | | | | | | Some turn-on macro/variable are re-arranged, buffer pointer is extended to support 32/64b combination of target/host. [YOCTO #688] fixed. [sgw: tweaked Upstream-Status format] Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* pango: upgrade from 1.28.3 to 1.28.4Yu Ke2011-04-182-2/+6
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* xf86-input-mouse: upgrade from 1.6 to 1.7Yu Ke2011-04-183-3/+5
| | | | Signed-off-by: Yu Ke <ke.yu@intel.com>
* mesa: upgrade to 7.10.2Yu Ke2011-04-184-15580/+7
| | | | | | | - also remove the talloc-removal.patch because it is already included in this version Signed-off-by: Yu Ke <ke.yu@intel.com>