summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
Commit message (Collapse)AuthorAgeFilesLines
* task-poky-sdk: add 'file' and 'ldd'Kevin Tian2011-01-281-1/+3
| | | | | | | these two are useful in the development environment, and also required by two LTP test cases (ld and ldd). Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* base-files: remove ending colon from default $PATH for root userKevin Tian2011-01-282-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | now the PATH for root user defined in a problematic way PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin: from eglibc: /* Two adjacent colons, or a colon at the beginning or the end of `PATH' means to search the current directory. */ that means current directory is always searched as the last path, which could generate undesired behavior. One example is found in LTP cron_deny01 test, which always complains "sh: cron_deny01 not found" cron_deny01 is a shell script which setups the initial test preparation and then invokes itself for real test under a different user: su $TEST_USER1 -c "$0" 'su' doesn't inherit PATH into the sub-shell, and thus $0 has to be an absolute path to have right script found. ltp appends the path of cron_deny01 to $PATH before running the test: export PATH="${PATH}:${LTPROOT}/testcases/bin" In ideal way "${LTPROOT}/testcases/bin/cron_deny01" is found and becomes $0, which works well. However due to the ending colon in original PATH: PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin::${LTPROOT}/testcases/bin $0 becomes 'cron_deny01' w/o leading path which makes sub-shell under 'su' failed to locate cron_deny01. remove ending colon then fixes this problem. Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* external-python-tarball: include multiprocessing moduleJoshua Lock2011-01-271-0/+1
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* meta-toolchain: Fix tar commandRichard Purdie2011-01-261-1/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-toolchain: Use --owner and --group options instead of using pseudo's ↵Richard Purdie2011-01-261-1/+1
| | | | | | overhead for a simple task Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* util-linux.inc: Fix DEPENDS on gettext for native caseRichard Purdie2011-01-252-1/+2
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-toolchain-sdk: Rename meta-toolchain-sdk to meta-toolchain-gmaeJessica Zhang2011-01-252-4/+4
| | | | | | | | Change the name from toolchain-sdk to toolchain-gmae, which is more accurate to what meta-toolchain-sdk generates Signed-off-by: Jessica Zhang <jessica.zhang@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* util-linux: tidy up metadataJoshua Lock2011-01-251-19/+19
| | | | | | | | | | Apply a couple of best practices to the recipe: 1) use the gettext class to ensure the right versions of gettext are used for the recipe variants (target, native, etc). 2) use layout variables rather than absolute paths in the package FILES_ definitions. Signed-off-by: Joshua Lock <josh@linux.intel.com>
* base-files: Add to make some directories needed by LSB.Jingdong Lu2011-01-251-1/+17
| | | | | | LSB will check some directories,eg, "/usr/local/" and need to make them for LSB test. Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
* gcc/libc: Change bootstrap to use an intermediate sysroot and hence no ↵Richard Purdie2011-01-254-0/+44
| | | | | | | | longer overwrite files Based upon patches from Dexuan Cui <dexuan.cui@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gcc-cross-initial, gcc-crosssdk-initial: change CROSS_TARGET_SYS_DIR and ↵Dexuan Cui2011-01-254-0/+14
| | | | | | insall into new locations Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* util-linux: fix lscpu packagingQing He2011-01-242-2/+5
| | | | | | | lscpu in util-linux 2.17.2 is specially under GPLv3, ensure it's packaged separately if it's being built. Signed-off-by: Qing He <qing.he@intel.com>
* util-linux: fix dangling symlinksQing He2011-01-242-6/+14
| | | | | | shutdown and swapon should be in $base_sbindir instead of $sbindir Signed-off-by: Qing He <qing.he@intel.com>
* util-linux: separately packaging blkid and uuidQing He2011-01-242-2/+9
| | | | | | | | To avoid full set of util-linux included by library dependencies. Fixes [BUGID #661]. Signed-off-by: Qing He <qing.he@intel.com>
* glib-2.0: Add missing DEPENDS on dbusRichard Purdie2011-01-211-2/+2
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dbus: Drop now unneeded DEPENDS on glib-2.0Richard Purdie2011-01-211-1/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* util-linux: Drop now unneeded DEPENDS on udevRichard Purdie2011-01-211-1/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* poky-image*-dev: Add -dev Images contianing headers and librariesSaul Wold2011-01-211-0/+15
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* dbus: upgrade to version 1.4.1Qing He2011-01-214-6/+6
| | | | | | from 1.4.0 Signed-off-by: Qing He <qing.he@intel.com>
* coreutils: upgrade to version 8.9Qing He2011-01-211-4/+5
| | | | | | | | from 8.5 coreutils now depends on gmp Signed-off-by: Qing He <qing.he@intel.com>
* meta-environment: Remove the recursive dependency on do_compileDongxiao Xu2011-01-201-1/+0
| | | | | | | | | | | | | | | | | | It is not needed to have dependency on each do_compile of its recursive depend tasks. This problem is triggered by building meta-toolchain-sdk from prebuilt result. Some packages like quilt-native, which is already been populated and packaged by do_populate_sysroot_setscene and do_package_write_xxx_setscene, however this recursive dependency of do_compile triggers the tasks flow of "do_setscene --> do_fetch --> do_unpack --> ..." again and do_setscene removes all the quilt-native files, making the other recipes failed while do_patch. Thanks for Kevin's help in root causing this issue. CC: Lianhao Lu <lianhao.lu@intel.com> Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* eglibc-package.inc: Stop eglibc-nativesdk providing eglib-thread-db and ↵Richard Purdie2011-01-201-3/+3
| | | | | | locale-base-* Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxml2: Enable "--with-docbook --with-debug --with-catalog" for LSB test.Jingdong Lu2011-01-202-1/+2
| | | | | | Enable options "--with-doc --with-debug --with-catalog" in order to pass LSB test. Signed-off-by: Jingdong Lu<jingdong.lu@windriver.com>
* glib-2.0: Enable debug option for LSB test.Jingdong Lu2011-01-202-1/+2
| | | | | | Enable "debug" option of glib-2.0 and make "glib_mem_profiler_table" and "g_mem_profile" enabled for LSB test. Signed-off-by: Jingdong Lu<jingdong.lu@windriver.com>
* libtool: Adjusted content of various libtool packages.Lianhao Lu2011-01-201-1/+1
| | | | | | | | [BUGID #562] fixing: 1. Adjusted the content of various packages generated by libtool. 2. Added libtool-nativesdk into task-sdk-host. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
* task-poky-tools: move systemtap to machine specific tasksSaul Wold2011-01-201-6/+5
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* systemtap: new packageTom Zanussi2011-01-201-0/+1
| | | | | | | Add systemtap, a general-purpose script-directed dynamic tracing and performance analysis tool for Linux. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
* psplash_svn.bb: Change poky boot logo to yocto logoMei Lei2011-01-182-2/+916
| | | | | | Change the boot logo to yocto logo Signed-off-by:Mei Lei <lei.mei@intel.com>
* task-sdk-host: add libtool-nativesdk to meta-toolchainSaul Wold2011-01-181-0/+1
| | | | | | This address [BUGID #652] Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-environment.bb: fix comments typosOtavio Salvador2011-01-181-2/+2
| | | | | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* external-python-tarball: add LIC_FILES_CHKSUMKoen Kooi2011-01-141-0/+3
| | | | | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* glib-2.0: Fix path problems with libtool 2.4Richard Purdie2011-01-132-4/+4
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-environment: Remove c++ include dir from CXXFLAGS.Lianhao Lu2011-01-121-3/+1
| | | | | | | [BUGID #651]. c++ include dir is no longer needed in the environment files due to commit f13cb20. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
* recpies: use SRCPV instead of SRCREV for PVYu Ke2011-01-062-2/+2
| | | | | | | | SRCPV is intended being used by PV, some recipes still use SRCREV for PV, which is not correct. This patch fix all the misusage. Signed-off-by: Yu Ke <ke.yu@intel.com>
* dbus-glib: upgrade to version 0.92Scott Garman2011-01-064-11/+13
| | | | | | Includes some minor recipe formatting changes. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* dbus-glib: delete unused patchScott Garman2011-01-061-17/+0
| | | | Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* glib-2.0: fix g_once_init_enter compile failureDarren Hart2011-01-062-2/+26
| | | | | | | | | | Kernelshark trips over a compile bug in glib-2.0 addressed by Open Embedded back in the 2.22 timeframe. It appears to still be present in 2.27. http://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg00529.html Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Tom Zanussi <tom.zanussi@intel.com>
* ncurses: upgrade to version 5.7Qing He2011-01-026-5004/+271
| | | | | | | | | | from 5.4 Largely based on the recipe from OpenEmbedded project ncurses: fix LIC_FILES_CHKSUM Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* glib-2.0: upgrade to version 2.27.5Dongxiao Xu2010-12-304-2/+2
| | | | | | upgrade from 2.27.3 to 2.27.5 Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* netbase: upgrade to version 4.44Dongxiao Xu2010-12-3019-2/+2
| | | | | | upgrade from 0.43 to 0.44 Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* RDEPENDS, RRECOMMENDS -> RDPEPENDS_${PN}, RRECOMMENDS_${PN}Koen Kooi2010-12-302-3/+3
| | | | | | | For these recipes the dependencies listed in RDEPENDS and RRECOMMENDS only apply to ${PN} Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* task-poky-tools.bb: re-enable blktraceTom Zanussi2010-12-301-0/+1
| | | | | | | The commit for BUGID #581 fixes the blktrace build errors - it should now be safe to re-enable the blktrace recipe. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
* poky-image-live.inc: Add LIC_FILES_CHKSUMRichard Purdie2010-12-251-0/+3
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* meta-toolchain Add LIC_FILES_CHKSUMRichard Purdie2010-12-251-0/+3
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* task-sdk-host: Add LIC_FILES_CHKSUMRichard Purdie2010-12-251-0/+3
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* task-cross-canadian: Add LIC_FILES_CHKSUMRichard Purdie2010-12-251-0/+2
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* ldconfig-native: Add LIC_FILES_CHKSUMRichard Purdie2010-12-241-0/+2
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* rootfs_ipk: The most recent opkg errors upon file overwrite. Until we fix ↵Richard Purdie2010-12-241-2/+2
| | | | | | package conflicts, disable this for now Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* eglibc: Only package ld.so.conf, not /etc/rpc which then conflicts with netbaseRichard Purdie2010-12-232-2/+2
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* cross-localedef: add LIC_FILES_CHKCSUMSaul Wold2010-12-231-0/+7
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>