summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* u-boot-fw-utils: Add for v2011.06Tom Rini2012-02-101-0/+26
| | | | | | | | | This provides the 'fw_setenv' and 'fw_getenv' programs for the target so that the U-Boot environment can be modified from Linux. These programs are system-agnostic and rely on a config file that a given BSP would provide and potentially RRECOMMEND this be installed. Signed-off-by: Tom Rini <trini@ti.com>
* distutils.bbclass: override LDSHARED so we use the linker for this build and ↵Matthew McClintock2012-02-101-0/+2
| | | | | | | | | | | | | not the one used in sstate-cache Without this fix, when packages are being built using distutils and the python packages were deployed from sstate-cache is it possible that the LD command will contain an invalid sysroot override. We can fix this by always exported LDSHARED, which is the env var that distutil looks for to override creating shared libraries. Signed-off-by: Matthew McClintock <msm@freescale.com>
* cross.bbclass: add virtclass handlerOtavio Salvador2012-02-101-0/+17
| | | | | | | Allow use of BBCLASSEXTEND with 'cross' and use of virtclass-cross in recipes. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* useradd.bbclass: skip processing on virtclass-cross extended packagesOtavio Salvador2012-02-101-0/+3
| | | | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* external-csl-toolchain: fix mtd-user.h issueChristopher Larson2012-02-091-0/+1
| | | | | | | The use of __packed, which isn't defined in userspace, caused busybox build failures. Signed-off-by: Christopher Larson <chris_larson@mentor.com>
* tcmode-default: add preference for gdb/gdbserverChristopher Larson2012-02-081-0/+1
| | | | Signed-off-by: Christopher Larson <chris_larson@mentor.com>
* classes/buildhistory: sort list fields in package infoPaul Eggleton2012-02-081-3/+14
| | | | | | | | | | Sort DEPENDS, RDEPENDS, and RRECOMMENDS in package info files so that any changes in order (which are not important) are smoothed out in the change history. Fixes [YOCTO #1961] Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* classes/buildhistory: sort image file listPaul Eggleton2012-02-081-1/+1
| | | | | | | Sort the contents of files-in-image.txt to avoid unnecessary changes showing up in the history due to reordering. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* external-csl-toolchain: split out gdbserver packagesChristopher Larson2012-02-081-2/+6
| | | | Signed-off-by: Christopher Larson <chris_larson@mentor.com>
* external-csl-toolchain: correct binary packagingChristopher Larson2012-02-081-1/+6
| | | | | | CS puts optimized executables in usr/lib/bin, not usr/bin. Signed-off-by: Christopher Larson <chris_larson@mentor.com>
* external-csl-toolchain: set PKG/PKGV for staticdevChristopher Larson2012-02-081-0/+2
| | | | Signed-off-by: Christopher Larson <chris_larson@mentor.com>
* task-core-tools-profile: fix valgrind for arm and systemtap for mipsSaul Wold2012-02-081-0/+2
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* mirrors.bbclass: Add yp.org and oe.org to fallback mirrorsKhem Raj2012-02-071-1/+20
| | | | | | | This should improve the fetching errors users see when upstream src_uri is unavailable Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uclibc: Upgrade recipes from 0.9.32 -> 0.9.33Khem Raj2012-02-0733-1686/+196
| | | | | | | Prefer 0.9.33 by default Delete recipes for 0.9.32 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dhcp: move dhcp leases files handling to postinst/postrmOtavio Salvador2012-02-072-2/+25
| | | | | | | Both server and client needs access to leases files so its creation and removal are now handled by postinst/postrm scripts. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* gcc-cross-testing: Fix evaluation of user and target nameKhem Raj2012-02-071-3/+3
| | | | | | | Dont use -q to grep we pipe to /dev/null anyway all we care is the return status of grep Signed-off-by: Khem Raj <raj.khem@gmail.com>
* classes,recipes: Replace POKY_* with CORE_IMAGE_*Khem Raj2012-02-0710-13/+13
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pseudo: Wrap renameat and opendirKhem Raj2012-02-073-2/+327
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mtools-3.9.9: Use correct URI for the mirrorSaul Wold2012-02-071-2/+2
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* libx11: Backport _XGetRequest APIKhem Raj2012-02-072-0/+140
| | | | | | | | | | | This API is relatively new and will be in next release of libX11 this is needed for OE qemu-native which links to libx11-native but uses libGL from build system and herein lies the problem if you have bleeding edge distro e.g. ubuntu 12.04(development) libGL.so expects this API to be present. Backported to 1.4.4 thusly Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdrm: Fix build failure unearthed by uclibcKhem Raj2012-02-072-2/+34
| | | | | | | | uclibc wants to know value of __USE_GNU for certain header prototypes to be enabled. So we move the config.h header up in search list. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python: Fix build failure of python-elementtree on x86_64Khem Raj2012-02-072-1/+29
| | | | | | | | The problem is due to mixing of headers from host system thusly corrected in setup.py by checkinng if we are cross compiling Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gconf,consolekit: Avoid polkit when compiling with uclibcKhem Raj2012-02-072-5/+15
| | | | | | | | polkit uses netdb functionality from glibc which is not available in uclibc therefore we avoid polkit when compiling for uclibc systems. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* runqemu-internal: qemuarm can handle 256MKhem Raj2012-02-071-6/+7
| | | | | | | Raise the check for max RAM supported for QEMU/arm its 256M since we patched it to be so in OE Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Enable options needed for ltp to compileKhem Raj2012-02-071-0/+5
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* task-core-tools: Divide it into 3 recipesKhem Raj2012-02-076-109/+164
| | | | | | | | task-core-tools-debug, task-core-tools-profile, task-core-tools-testapps otherwise if we choose one through PACKAGE_GROUPS all packages are built since they are in same recipe. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* linux-yocto: fri2: use emgd-1.10Bruce Ashfield2012-02-072-2/+2
| | | | | | | | | | | | | Updating meta for the following change: [ fri2: use emgd-1.10 Use the yocto/emgd-1.10 branch in place of yocto/emgd. ] Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* kern-tools: remove explicit 'yocto' references from auto-bsp handlingBruce Ashfield2012-02-071-1/+1
| | | | | | | | | To adapt to different branch names in a repository, removing explicit references to 'yocto' in automatically created BSPs ensures that they are consistent with the merged variants. Existing BSPs and auto BSPs are not impacted by this change. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* linux-yocto: rt compiliation fixBruce Ashfield2012-02-072-2/+2
| | | | | | | | | | Updating the meta SRCREC to pickup the following changes: 70e86dc meta/rt: update rt patch cache Without this change a 3.0 based -rt build will fail to patch. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* linux-yocto: meta updates for sys940x and cleanupBruce Ashfield2012-02-072-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating the meta SRCREV to pickup the following changes: [ Author: Darren Hart <dvhart@linux.intel.com> Date: Wed Feb 1 09:37:48 2012 -0800 Remove boot-live cfg duplication from BSPs Several BSPs duplicated the boot-live fragment in their BSP specific config. Remove the duplication and add CONFIG_RD_GZIP and CONFIG_BLK_DEV_SR to the boot-live fragment. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Acked-by: Tom Zanussi <tzanussi@intel.com> Author: Darren Hart <dvhart@linux.intel.com> Date: Tue Jan 31 13:18:17 2012 -0800 meta: sys940x BSP meta data The Inforce SYS940x-ECX Developer-Ready Reference Platform features: o Intel Atom E6xx (0.6-1.6 GHz) o Up to 1GB on-board DDR2 o Intel Platform Controller Hub EG20T o VGA,LVDS o HD Audio o SD Card o Dual SATA o Mini-PCIe http://www.inforcecomputing.com/SYS940X_ECX.html Signed-off-by: Darren Hart <dvhart@linux.intel.com> Acked-by: Tom Zanussi <tzanussi@intel.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com> ] Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* linux-yocto: locate and use out of tree features specified on the SRC_URIBruce Ashfield2012-02-071-0/+21
| | | | | | | | | | In a similar manner to calling the patch.bbclass to locate patches that were listed on the SRC_URI, it is also useful to query about 'other' items that are on the SRC_URI. In the case of linux-yocto, it allows us to know about kernel features that were specific on the URI and then apply them to the current tree. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
* xorg-apps: Bump PR to accomodate meta-oe recipe deletionKhem Raj2012-02-071-1/+1
| | | | | | | | rgb in meta-oe has been removed in favour of oe-core which requires a PR bump so feeds keep working Signed-off-by: Khem Raj <raj.khem@gmail.com>
* udev: stop providing cache support by defaultOtavio Salvador2012-02-072-2/+2
| | | | | | | | | The usefulness of cache nowadays has been reduced a lot and thus it's better to stop using it by default. Dropping the recommends allows for image to decide if they want or not to have cache enabled, instead of require a machine override. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* systemtap: build and install uprobes.koWade Farnsworth2012-02-073-15/+61
| | | | | | | | | SystemTap needs to provide uprobes.ko in order to support user space probing. Build and install the module on systems that support it. Additionally, split off common bits into systemtap_git.inc. Signed-off-by: Wade Farnsworth <wade_farnsworth@mentor.com>
* systemtap: extend the recipe to build the native packageWade Farnsworth2012-02-071-2/+6
| | | | | | | | Since the target image may not contain dev tools, it is useful to provide native systemtap in order to be able to compile systemtap scripts for the target. Signed-off-by: Wade Farnsworth <wade_farnsworth@mentor.com>
* systemtap: bump SRCREV to grab version 1.7Wade Farnsworth2012-02-071-3/+3
| | | | | | Bump SRCREV to the latest stable version of systemtap. Signed-off-by: Wade Farnsworth <wade_farnsworth@mentor.com>
* u-boot inc: update inc file for newer u-boot versionsChase Maupin2012-02-071-4/+31
| | | | | | | | | | | | * Add support for different suffixes found with later u-boot versions which have switched from .bin to .img * Allow recipes that include u-boot.inc to also package an SPL if they build one. * Minimum requirement is to set the SPL_BINARY value to add the SPL to the u-boot package as well as into the deploy directory. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
* libcap: Cope with ${libdir} and ${base_libdir} being the sameMike Crowe2012-02-071-2/+6
| | | | | | | ${libdir} and ${base_libdir} may be the same. If they are don't try and move files onto themselves. Signed-off-by: Mike Crowe <mac@mcrowe.com>
* libusb-compat: Cope with ${libdir} and ${base_libdir} being the sameMike Crowe2012-02-071-2/+4
| | | | | ${libdir} and ${base_libdir} may be the same. If they are don't try and move files onto themselves.
* libusb1: Cope with ${libdir} and ${base_libdir} being the sameMike Crowe2012-02-071-2/+4
| | | | | | | ${libdir} and ${base_libdir} may be the same. If they are don't try and move files onto themselves. Signed-off-by: Mike Crowe <mac@mcrowe.com>
* webkit-gtk: Make webgl support configurable via DISTRO_FEATURES.Peter Tworek2012-02-071-1/+3
| | | | | | | | | * Add missing dependency on virtual/libgl. * Make webgl configurable via DISTRO_FEATURES="opengl". * Run tested on netbook pro. Signed-off-by: Peter Tworek <tworaz666@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
* webkit-gtk: Fix error.html resource path.Peter Tworek2012-02-071-2/+2
| | | | | Signed-off-by: Peter Tworek <tworaz666@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
* openssl-0.9.8: Remove in favor or 1.0.0Saul Wold2012-02-0724-1678/+0
| | | | | | | Now that Openssl 1.0.0 has been out for a while, there is no need to keep multiple versions. Signed-off-by: Saul Wold <sgw@linux.intel.com>
* gnupg-1.4.7: Update Patch InfoSaul Wold2012-02-072-0/+15
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* busybox: Add flock utility to default configuration.Peter Tworek2012-02-071-1/+1
| | | | | | | | | Flock is required by by pm-utils package to function properly (/usr/lib/pm-utils/functions). It's shipped in both busybox and util-linux. Both versions work fine with pm-utils. Enabling it in busybox seems like simpliest solution for the problem. Signed-off-by: Peter Tworek <tworaz666@gmail.com>
* bootimg: Use the same OS files for each boot methodDarren Hart2012-02-073-47/+46
| | | | | | | | | | | | | | | | | | | Fixes [YOCTO #1951] The do_bootimg code can generate hybrid efi+pcbios images (syslinux and grub-efi) to boot on platforms with both EFI and legacy BIOS options. The current implementation copies the kernel, initrd, and rootfs twice, unnecessarily bloating the image size. This is an especially egregious bug on -sato images. Update the classes to use a common install of the kernel, initrd, and rootfs to the root of the boot media. Grub-efi, syslinux, and isolinux can all reference this location explicitly with a leading slash. Tested with an EFI+PCBIOS image in both EFI and PCBIOS boot modes on two platforms. No ISO image testing was performed. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
* tune-mips32.inc: Add mips32-nf and mips32el-nfAndreas Oberritter2012-02-071-1/+5
| | | | | | | tune-mips32.inc only lists mips32 CPUs with hardware FPU. Extend it to list CPUs without hardware FPU, too. Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
* libzypp: add missing runtime dependences on gzip and gnupgSteve Sakoman2012-02-031-2/+2
| | | | | | | | gzip is required to uncompress repository files gnupg is required for the support of signed repositories. Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnupg: add 2.0.18 (initial recipe)Steve Sakoman2012-02-031-0/+24
| | | | | | | | GnuPG 2.0 is the new modularized version of GnuPG supporting OpenPGP and S/MIME Signed-off-by: Steve Sakoman <steve@sakoman.com> Acked-by: Paul Menzel <paulepanter@users.sourceforge.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libksba: add 1.2.0 (initial recipe)Steve Sakoman2012-02-031-0/+13
| | | | | | | | | Libksba provides an easy API to create and parse X.509 and CMS related objects and is required for gnupg Signed-off-by: Steve Sakoman <steve@sakoman.com> Acked-by: Paul Menzel <paulepanter@users.sourceforge.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>