aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-01-03Add Upstream-Status to patchesSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-03rxvt-unicode: Update to 9.14Saul Wold
COPYING file has been reformatted whites space changes Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-03util-linux: Update to 2.20.1Saul Wold
Add patch remove setting CC, LD and LDFLAGS on commandline since they are passed correctly via configure. Those setting also caused the configure information about -std=gnu99 from being passed correctly. Removed patch that was fixed upstream Added scanf configuration, since this is a cross-compile target check libuuid removed an API that e2fsprogs uuidd used (uuid__generate_*), thus we disable it in this patch and will now provide uuidd from util-linux. See http://sourceforge.net/projects/e2fsprogs/forums/forum/7053/topic/4639484 Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-03python: add md5module supportSaul Wold
The internal md5 module is needed for using "waf" to install other python packages such as pycairo. Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-03dropbear: fix CRYPTLIB patchSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-03libiconv: Update to 1.14Saul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-03resolvconf: Update to 1.63Saul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-03wpa-supplicant - pulls GPLv3 license rpm in a non-GPLv3 build (libgnutls-extra)Andrei Gherzan
Two different defconfigs are chosen, one for "with GPLv3 build" and one for "without". In this way, libgnutls-extra is not pulled in a non-GPLv3 build. [YOCTO #1845] Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-01-03gnome-keyring: fix gsettings_data_convert seg faultZhai Edwin
gsttings_data_convert cause seg fault as gnome-keyring's schema is not installed properly. As a fix, running glib-compile-schemas from glib-utils to made "gschemas.compiled". [YOCTO #1779] got fixed. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
2012-01-03glib-2.0: we need zlibChristopher Larson
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
2012-01-03image_types: Ensure /init exists for cpio rootfs archivesDarren Hart
In order for the kernel to accept an initramfs as a rootfs, it must have /init - even if it is an empty file. Touch /init to ensure it exists for cpio and cpio.gz image types. When used with initrd and rootfs=/dev/ram0, this allows the cpio and cpio.gz images to be used as the rootfs. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2012-01-03task-core-boot: Allow DISTRO to disable keymaps via VIRTUAL-RUNTIME_keymapsDarren Hart
keymaps pulls in gettext, which can't build without wide character support. Rather than have to add a -tiny variant of every MACHINE to drop "keyboard" from the MACHINE_FEATURES, just enable the DISTRO to define what gets added to RDEPENDS_task-core-boot when MACHINE_FEATURES includes keyboard via the VIRTUAL-RUNTIME_keymaps variable. By default, keep "keymaps". Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2012-01-03linux-yocto-tiny: New kernel recipe for tiny distrosDarren Hart
linux-yocto-tiny drops the linux-tools and sets the KMACHINE branch to standard/tiny. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
2012-01-02udev: skip mounting /dev on tmpfs if it is on devtmpfsOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-01-02udev: use tabs for init script (no code changes)Otavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-01-02udev: reorganize files of 164 versionOtavio Salvador
We merged both files and udev-164 directory onto a single directory and renamed udev-new.inc onto udev.inc as we have a single version of udev now. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-01-02udev-extraconf: move mount.blacklist to udev-extraconf dirOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-01-02udev: drop 145 versionOtavio Salvador
The 164 version has been the default version for some time and as we don't have any clear reasoning to keep 145 around, we're removing it now. Some files were also removed as 164 recipe provides specific versions of it and thus those were going to be unused. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-01-02distro_tracking_fields: update the info for recipe upgrade.Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02rpm: Fix rpm database files capacity issue.Mei Lei
Tune the __db* size in DB_CONFIG. This will reduce the __db* size from 62MB to 26MB in qemu. [YOCTO #1769] Signed-off-by: Mei Lei <lei.mei@intel.com>
2012-01-02classes/image: implement generic locale package installationPaul Eggleton
Let each package-specific rootfs implementation provide basic functions to query the existence of a package and install a list of packages and then have a generic install function so this logic is in one place. Note: unlike previous versions of this code in OE-Core this uses the IMAGE_LINGUAS variable and not IMAGE_LOCALES - note that IMAGE_LINGUAS was what was used in OE-Classic and it is already used in OE-Core in order to install locale-base-*. This will mean that if IMAGE_LINGUAS is left at the default you will now get more packages installed. If you don't want these language support packages then you should set IMAGE_LINGUAS explicitly. This restores locale installation to the same state as OE-Classic, only we now support all the packaging backends. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-01-02u-boot: improved DESCRIPTION, fixed HOMEPAGEFrans Meulenbroeks
HOMEPAGE pointed to an sf.net page that said that the page did not exist any more and after that it redirected to the denx.de page; updated HOMEPAGE to point to that page Also improved the description to use the official capitalisation Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
2012-01-02patch.bbclass: abstract out logic that determines patches to applyChristopher Larson
This is needed by the copyleft_compliance class, so it can emit series files for the patches, which greatly increases their usefulness to a user trying to reconstruct the sources outside of OE. Signed-off-by: Christopher Larson <chris_larson@mentor.com>
2012-01-02libevent: upgrade to 2.0.16Scott Garman
Updated HOMEPAGE and SRC_URI to reflect project's new home. From the whatsnew-2.0.txt document: COMPATIBILITY: Nearly all existing code that worked with Libevent 1.4 should still work correctly with Libevent 2.0. So this upgrade is expected to be safe. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2012-01-02chrpath: upgrade to 0.14Scott Garman
SRC_URI changed because Debian has not started packaging v0.14 yet. So now we're using the true upstream for sources. Confirmed license file is still GPLv2, checksum changed due to updated FSF postal address in COPYING. Added HOMEPAGE and BUGTRACKER fields. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2012-01-02distro_tracking_fields: update the info for recipe upgrade.Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02libsamplerate0: upgrade to 0.1.8Shane Wang
This patch is to upgrade libsamplerate0 to 0.1.8 and remove the patch for 0.1.7. In the new code, the fix is there in M4/endian.m4 (which is part of acinclude.m4 in 0.1.7) The license is changed from "Copyright (C) 2002-2008 Erik de Castro Lopo <erikd@mega-nerd.com>" to "Copyright (C) 2002-2011 Erik de Castro Lopo <erikd@mega-nerd.com>". Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02libical: upgrade to 0.48Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02glib-2.0: upgrade to 2.30.2Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02minicom: upgrade to 2.5Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02freetype: upgrade to 2.4.8Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02distro_tracking_fields: update the info for recipe upgradingShane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02libpcap: upgrade to 1.2.0Shane Wang
This patch is to upgrade libpcap to 1.2.0. The values of the macro definitions are duplicated with the new code, so change them into other values. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02ofono: upgrade to 1.0Shane Wang
This patch is to upgrade ofono to 1.0. The license is changed from "Copyright (C) 2008-2010 Intel Corporation. All rights reserved." into "Copyright (C) 2008-2011 Intel Corporation. All rights reserved." Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02telepathy-glib: upgrade to 0.17.4Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02valgrind: upgrade to 3.7.0Shane Wang
This patch is to upgrade valgrind to 3.7.0. The licenses are changed from "Copyright (C) 2000-2010 Julian Seward. All rights reserved." to "Copyright (C) 2000-2011 Julian Seward. All rights reserved." Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02mtd-utils: upgrade to 1.4.9Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02gst-ffmpeg: upgrade to 0.10.13Shane Wang
This patch is to upgrade gst-ffmpeg to 0.10.13. Some license files are changed because the folder "ffmpeg" disappears, and those license files under "libav" are the same. LICENSE is different because the word "ffmpeg" is changed into "libav" under the libav folder. Again, gst-ffmpeg tar ball contains library libav itself. So the configure needs to disable yasm for x86. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02gst-fluendo-mpegdemux: upgrade to 0.10.69Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02gst-fluendo-mp3: upgrade to 0.10.16Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02gst-plugins-bad: upgrade to 0.10.22Shane Wang
This patch is to upgrade gst-plugins-bad to 0.10.22. One of the license files is removed because the file doesn't exist any more. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02gst-plugins-ugly: upgrade to 0.10.18Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02polkit: upgrade to 0.103Shane Wang
This is the patch to upgrade polkit to 0.103. The license is changed because the HTML content is generated by GTK-Doc V1.18 (XML node) rather than GTK-Doc V1.17 (XML node), which causes the change of the tag. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02distro_tracking_fields: take the ownership of Mei Lei'sShane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02distro_tracking_fields: update the info for the manual check list (2011/12/24)Shane Wang
update the information for the manual check list after checking the upstream on Dec 24, 2011. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02buildhistory: avoid quoting issues with the layer list for build-idChristopher Larson
--4ef4ab1d_66334873_12d0c Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline The layer list is multiline, and includes quotes, so including it within quotes is problematic, particularly if the revision includes characters which are not valid outside of a quoted string in shell. To reproduce this failure: do a build with an scm layer not on a branch. Signed-off-by: Christopher Larson <chris_larson@mentor.com (mailto:chris_larson@mentor.com)>
2012-01-02base.bbclass: Allow buildstats to be optionally suppliedMark Hatle
Buildstats should be allowed to be optionally enabled. It's recommended that it be enabled via the USER_CLASSES setting. Alternatively it could be enabled via the INHERIT_DISTRO or similar mechanism. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
2012-01-02self-hosted-image: Add builder user and mini XZhai Edwin
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
2012-01-02Add "builder" user for specific purpose.Zhai Edwin
"builder" can start some auto stuff by mini X session. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
2012-01-02Add mini X core tasksZhai Edwin
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>