scm/bb/tizen-distro.git
13 years agobitbake/xmlrpc: Modify xmlrpc server to work with Python 2.7
Joshua Lock [Wed, 1 Dec 2010 14:40:21 +0000 (14:40 +0000)]
bitbake/xmlrpc: Modify xmlrpc server to work with Python 2.7

Python 2.7's library changes some of xmlrpclib's internal implementation such
that interacting with a proxy to BitBakes SimpleXMLRPCServer would cause
BitBake to crash.

The issue was traced to changes in the xmlrpclib.Transport implementation and
Python bug #8194 (http://bugs.python.org/issue8194).

This patch introduces a workaround by create a subclass of
xmlrpclib.Transport, which overrides the offending methods with the Python
2.6.6 implementation copy and pasted from the Python 2.6.6 xmlrpclib, and
using this BBTransport implementation for both xmlrpclib.Server objects we
create.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
13 years agobitbake/crumbs: add optional pbar parameter to RunningBuild.handle_event()
Joshua Lock [Thu, 25 Nov 2010 15:54:19 +0000 (15:54 +0000)]
bitbake/crumbs: add optional pbar parameter to RunningBuild.handle_event()

Defaults to None, but if set will pass the ParseProgress sofar and total to
pbar's update() method.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
13 years agobitbake/depexp: Factor ProgressBar into a separate class in crumbs/
Joshua Lock [Thu, 25 Nov 2010 15:15:10 +0000 (15:15 +0000)]
bitbake/depexp: Factor ProgressBar into a separate class in crumbs/

ProgressBar will be useful in other UI elements so make it it's own class.
Make ProgressBar a subclass of gtk.Dialog, rather than gtk.Window, so that we
can suggest the window manager parent the ProgressBar to the widget passed at
as parent.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
13 years agobitbake/goggle: interaction tweaks
Joshua Lock [Thu, 11 Nov 2010 10:26:48 +0000 (10:26 +0000)]
bitbake/goggle: interaction tweaks

Set the goggle window to a more sane default size (640x480) and hook up the
close button.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
13 years agobitbake/crumbs: fix the event name determination
Joshua Lock [Thu, 11 Nov 2010 10:18:11 +0000 (10:18 +0000)]
bitbake/crumbs: fix the event name determination

Due to some recent change *somewhere* we need to explicitly look at the
name attribute on the instances class, rather than the name attribute of
the instance.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
13 years agobitbake/crumbs: do the test for ignored messages sooner
Joshua Lock [Thu, 11 Nov 2010 10:14:11 +0000 (10:14 +0000)]
bitbake/crumbs: do the test for ignored messages sooner

Move the test for ignored messages to the start of the message handling loop to
avoid doing work for messages which are only going to be ignored.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
13 years agobitbake/crumbs: Fix crumbs UI for bitbake event class name changes
Joshua Lock [Thu, 11 Nov 2010 10:13:08 +0000 (10:13 +0000)]
bitbake/crumbs: Fix crumbs UI for bitbake event class name changes

Some of the events we where trying to look for have had their class names
changed, fix these references.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
13 years agosiggen.py: fix the wrong usage on BB_TASKHASH_WHITELIST
Kevin Tian [Mon, 22 Nov 2010 16:35:03 +0000 (00:35 +0800)]
siggen.py: fix the wrong usage on BB_TASKHASH_WHITELIST

BB_TASKHASH_WHITELIST is expected to filter out native tasks from the
dependency list for target recipe's checksum. However current code
actually implements the opposite. All native sstate packages end up
to have empty task dependency while target sstate packages still have
native tasks counted into the checksum.

Signed-off-by: Kevin Tian <kevin.tian@intel.com>
13 years agoimagetest-qemu: Allow the task to run after any rootfs is created and also standalone
Richard Purdie [Sun, 28 Nov 2010 14:45:31 +0000 (14:45 +0000)]
imagetest-qemu: Allow the task to run after any rootfs is created and also standalone

One bitbake invocation can cause multiple images to be generated. We should test
each one and we cna do this by running after the rootfs task. Running the tests
standlone is also still possible with a new separate standlone task.

Acked-by: Scott Garman <scott.a.garman@intel.com>
Acked-by: Jiajun Xu <jiajun.xu@intel.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
13 years agobitbake/data_smart: Refactor _append/_prepend code to remove duplication
Richard Purdie [Tue, 7 Dec 2010 12:25:24 +0000 (12:25 +0000)]
bitbake/data_smart: Refactor _append/_prepend code to remove duplication

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
13 years agobitbake/data_smart: Fix append/prepend/override ordering issue
Richard Purdie [Mon, 6 Dec 2010 00:39:20 +0000 (00:39 +0000)]
bitbake/data_smart: Fix append/prepend/override ordering issue

Where a variable name consisted of an append/prepend combined with an override
and there was also an append/prepend to the variable, the override could be lost
if the override was not in OVERRIDES.

For example:

FOO = "A"
FOO_append = "B"
FOO_append_virtclass-native = "C"

could result in "AB" even though virtclass-native was in OVERRIDES.

With this patch applied, the result is "ABC" as would be expected.

The problem was the deletion of the _append/_prepend flag was happening
if *any* append/prepend was procesed, the result should really be that
it should contain any unprocessed append/prepend.

Kevin Tian deserves credit for looking into this and working out the
problem here.

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
13 years agoRemove unused tunctl-src/Makefile from scripts/
Scott Garman [Tue, 7 Dec 2010 08:48:39 +0000 (00:48 -0800)]
Remove unused tunctl-src/Makefile from scripts/

Removing leftover cruft

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
13 years agoAdd sanity test scenarios for -lsb images
Scott Garman [Tue, 7 Dec 2010 08:48:03 +0000 (00:48 -0800)]
Add sanity test scenarios for -lsb images

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
13 years agotask-poky-tools: disable blktrace due to build failures
Saul Wold [Mon, 6 Dec 2010 23:11:12 +0000 (15:11 -0800)]
task-poky-tools: disable blktrace due to build failures

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agogupnp: add gnome-icon-theme to DEPENDS
Saul Wold [Mon, 6 Dec 2010 19:38:54 +0000 (11:38 -0800)]
gupnp: add gnome-icon-theme to DEPENDS

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agosanity.bbclass: Warn people when TERMCMD is set to a non-installed program
Joshua Lock [Fri, 26 Nov 2010 16:43:05 +0000 (16:43 +0000)]
sanity.bbclass: Warn people when TERMCMD is set to a non-installed program

We default to gnome-terminal for TERMCMD (and TERMRUNCMD) so should check that
this program actually exists during sanity checking.

As a corollary document how to change these variables in the local.conf

Signed-off-by: Joshua Lock <josh@linux.intel.com>
13 years agolocal.conf.sample: Note extra variables required when disabling en_US locale
Joshua Lock [Fri, 26 Nov 2010 14:23:16 +0000 (14:23 +0000)]
local.conf.sample: Note extra variables required when disabling en_US locale

When changing which locales are generated for libc it may also be neccessary to
change IMAGE_LINGUAS and LIMIT_BUILT_LOCALES

Signed-off-by: Joshua Lock <josh@linux.intel.com>
13 years agolibart-lgpl: Add config.h for x86_64
Saul Wold [Mon, 6 Dec 2010 18:26:46 +0000 (10:26 -0800)]
libart-lgpl: Add config.h for x86_64

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agolibnl: fix typo in the Makefile fix
Qing He [Mon, 6 Dec 2010 07:50:39 +0000 (15:50 +0800)]
libnl: fix typo in the Makefile fix

change .$(OBJEXT) to .lo in the rule to reflect libtool setup

Signed-off-by: Qing He <qing.he@intel.com>
13 years agopreferred-xorg-versions: Update to match new versions
Saul Wold [Fri, 3 Dec 2010 21:25:19 +0000 (13:25 -0800)]
preferred-xorg-versions: Update to match new versions

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agoeee-acpi-scripts: Update to 1.1.11
Zhai Edwin [Sun, 28 Nov 2010 07:48:25 +0000 (15:48 +0800)]
eee-acpi-scripts: Update to 1.1.11

Rebased remove-doc-check.patch

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agodistro_tracking_fields: update fields for devel/toolchain recipes
Nitin A Kamble [Mon, 29 Nov 2010 17:09:44 +0000 (09:09 -0800)]
distro_tracking_fields: update fields for devel/toolchain recipes

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
13 years agosubversion: upgrade from 1.5.5 to 1.6.13
Nitin A Kamble [Thu, 18 Nov 2010 22:52:03 +0000 (14:52 -0800)]
subversion: upgrade from 1.5.5 to 1.6.13

And update recipe checksums

rebased neon-detection.patch:
upstream code has some of the changes similar to the changes in the
patch. Removing the duplicate changes from the patch file.

subversion: update LIC_CHKSUM_FILES field

Noticed this change in the COPYING file:

$ diff -u COPYING /tmp/COPYING
--- COPYING 2006-05-28 07:41:18.000000000 -0700
+++ /tmp/COPYING 2010-12-03 11:16:15.000000000 -0800
@@ -10,7 +10,7 @@
 on), you may use a newer version instead, at your option.

 ================================================================
-Copyright (c) 2000-2006 CollabNet.  All rights reserved.
+Copyright (c) 2000-2009 CollabNet.  All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
13 years agogtk-engines: Update to 2.20.2
Zhai Edwin [Wed, 1 Dec 2010 05:45:21 +0000 (13:45 +0800)]
gtk-engines: Update to 2.20.2

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agognome-icon-theme: Update to 2.31.0
Zhai Edwin [Wed, 1 Dec 2010 01:04:58 +0000 (09:04 +0800)]
gnome-icon-theme: Update to 2.31.0

Rebased the patch iconpath-option.patch

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agognome-desktop: Update to 2.32.1
Zhai Edwin [Wed, 1 Dec 2010 00:42:45 +0000 (08:42 +0800)]
gnome-desktop: Update to 2.32.1

Removed no-desktop-docs.patch, as it is already in upstream.

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agoweb: Update to svn r129
Zhai Edwin [Tue, 30 Nov 2010 05:25:21 +0000 (13:25 +0800)]
web: Update to svn r129

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agox11vnc: Update to 0.9.12
Zhai Edwin [Tue, 30 Nov 2010 09:53:44 +0000 (17:53 +0800)]
x11vnc: Update to 0.9.12

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agox11perf: Update to 1.5.2
Zhai Edwin [Tue, 30 Nov 2010 09:17:11 +0000 (17:17 +0800)]
x11perf: Update to 1.5.2

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agopuzzles: Update to svn r9023
Zhai Edwin [Tue, 30 Nov 2010 08:34:52 +0000 (16:34 +0800)]
puzzles: Update to svn r9023

Removed makedist_hack.patch, as makedist.sh is no longer exist in upstream and
mkfiles.pl is called directly now.

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agoethtool: Update to 2.6.36
Zhai Edwin [Sun, 28 Nov 2010 08:57:54 +0000 (16:57 +0800)]
ethtool: Update to 2.6.36

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agoconsolekit: Update to 0.4.3
Zhai Edwin [Sun, 28 Nov 2010 07:24:13 +0000 (15:24 +0800)]
consolekit: Update to 0.4.3

Rebased nopolkit.patch.

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agoacpid: update to 1.0.10
Zhai Edwin [Fri, 26 Nov 2010 05:56:56 +0000 (13:56 +0800)]
acpid: update to 1.0.10

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agotidy: Add license checksum
Zhai Edwin [Fri, 26 Nov 2010 15:10:16 +0000 (23:10 +0800)]
tidy: Add license checksum

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agopointercal: Add license checksum
Zhai Edwin [Fri, 26 Nov 2010 15:53:48 +0000 (23:53 +0800)]
pointercal: Add license checksum

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agobluez-hcidump: update LICENSE and LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:46:08 +0000 (14:46 +0800)]
bluez-hcidump: update LICENSE and LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-boot: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:39:24 +0000 (14:39 +0800)]
task-poky-boot: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-nfs: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:37:04 +0000 (14:37 +0800)]
task-poky-nfs: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agoppp-dialin: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:36:06 +0000 (14:36 +0800)]
ppp-dialin: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-qt: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:34:30 +0000 (14:34 +0800)]
task-poky-qt: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-standalone-sdk-target: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:33:18 +0000 (14:33 +0800)]
task-poky-standalone-sdk-target: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-apps-x11-pimlico: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:32:47 +0000 (14:32 +0800)]
task-poky-apps-x11-pimlico: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotelepathy-glib: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:31:24 +0000 (14:31 +0800)]
telepathy-glib: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-basic: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:30:02 +0000 (14:30 +0800)]
task-poky-basic: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-sdk-gmae: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:29:14 +0000 (14:29 +0800)]
task-poky-sdk-gmae: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-standalone-gmae-sdk-target: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:27:54 +0000 (14:27 +0800)]
task-poky-standalone-gmae-sdk-target: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-tools: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:26:43 +0000 (14:26 +0800)]
task-poky-tools: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-base: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:25:57 +0000 (14:25 +0800)]
task-base: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-x11-sato: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:25:13 +0000 (14:25 +0800)]
task-poky-x11-sato: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agoformfactor: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:24:24 +0000 (14:24 +0800)]
formfactor: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-sdk: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:23:41 +0000 (14:23 +0800)]
task-poky-sdk: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky-lsb: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:22:42 +0000 (14:22 +0800)]
task-poky-lsb: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agotask-poky: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:19:22 +0000 (14:19 +0800)]
task-poky: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agorun-postinsts: update LIC_FILES_CHKSUM info
Dongxiao Xu [Fri, 3 Dec 2010 06:18:02 +0000 (14:18 +0800)]
run-postinsts: update LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agodistro_tracking_fields: update fields for devel/toolchain recipes
Nitin A Kamble [Mon, 29 Nov 2010 17:09:44 +0000 (09:09 -0800)]
distro_tracking_fields: update fields for devel/toolchain recipes

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
13 years agotcl: upgrade from 8.5.8 to 8.5.9
Nitin A Kamble [Wed, 1 Dec 2010 20:42:48 +0000 (12:42 -0800)]
tcl: upgrade from 8.5.8 to 8.5.9

Rebased this patch to the newer upstream code.
  modified:    fix_non_native_build_issue.patch

Deleted following patch as the newer upstream code includes it already.
  deleted:    tcl/mips-tclstrtod.patch

tcl: update checksums

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
13 years agogit: upgrade from 1.7.2.1 to 1.7.3.2
Nitin A Kamble [Wed, 1 Dec 2010 18:48:20 +0000 (10:48 -0800)]
git: upgrade from 1.7.2.1 to 1.7.3.2

And also updated the src_uri checksums.

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
13 years agomakedepend: upgrade from 1.0.2 to 1.0.3
Nitin A Kamble [Mon, 29 Nov 2010 17:08:44 +0000 (09:08 -0800)]
makedepend: upgrade from 1.0.2 to 1.0.3

And also update the recipe checksums.
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
13 years agom4: upgrade from 1.4.13 to 1.4.15
Nitin A Kamble [Tue, 23 Nov 2010 17:55:04 +0000 (09:55 -0800)]
m4: upgrade from 1.4.13 to 1.4.15

And update recipe checksums

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
13 years agodistro_tracking_fields.inc: update insserv and libatomics-ops
Scott Garman [Tue, 30 Nov 2010 05:04:24 +0000 (21:04 -0800)]
distro_tracking_fields.inc: update insserv and libatomics-ops

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
13 years agolibatomics-ops: recipe updates, fix build for mips
Scott Garman [Tue, 30 Nov 2010 04:47:12 +0000 (20:47 -0800)]
libatomics-ops: recipe updates, fix build for mips

* Added another patch from Gentoo/OE to allow package to build for
  mips arches
* Added SUMMARY, HOMEPAGE, and SECTION fields
* Added source checksums

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
13 years agoinsserv: upgrade to version 1.14.0
Scott Garman [Mon, 29 Nov 2010 04:46:27 +0000 (20:46 -0800)]
insserv: upgrade to version 1.14.0

* Removed obsolete patches
* Disabled make check tests which cannot be run when cross-compiled
* Added SUMMARY, DESCRIPTION, and PRIORITY fields
* Added source checksums

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
13 years agokeymaps:Add license checksum and update the GPL information
Mei Lei [Thu, 2 Dec 2010 13:12:40 +0000 (21:12 +0800)]
keymaps:Add license checksum and update the GPL information

Add a patch to generate COPYING file and get the COPYING file checksum to bb file, update the "GPL" to "GPLv2" according to the COPYING file

Signed-off-by: Mei Lei <lei.mei@intel.com>
13 years agofstests:Add license checksum and update the GPL information
Mei Lei [Thu, 2 Dec 2010 13:11:53 +0000 (21:11 +0800)]
fstests:Add license checksum and update the GPL information

Add source file license checksum to bb file and update the "GPL" to "ZLIB" according to the license information

Signed-off-by: Mei Lei <lei.mei@intel.com>
13 years agoinitramfs-live-boot:Add license checksum to bb file
Mei Lei [Thu, 2 Dec 2010 10:59:47 +0000 (18:59 +0800)]
initramfs-live-boot:Add license checksum to bb file

Add COPYING.MIT file checksum to bb file

Signed-off-by: Mei Lei <lei.mei@intel.com>
13 years agoinitramfs-boot:Add license checksum to bb file
Mei Lei [Thu, 2 Dec 2010 10:59:47 +0000 (18:59 +0800)]
initramfs-boot:Add license checksum to bb file

Add COPYING.MIT file checksum to bb file

Signed-off-by: Mei Lei <lei.mei@intel.com>
13 years agoinitramfs-live-install:Add license checksum to bb file
Mei Lei [Thu, 2 Dec 2010 10:59:47 +0000 (18:59 +0800)]
initramfs-live-install:Add license checksum to bb file

Add COPYING.MIT file checksum to bb file

Signed-off-by: Mei Lei <lei.mei@intel.com>
13 years agoinitscripts:Add a patch of GPLv2 license and its checksum to bb file
Mei Lei [Thu, 2 Dec 2010 10:59:02 +0000 (18:59 +0800)]
initscripts:Add a patch of GPLv2 license and its checksum to bb file

Add this GPLv2 patch for local recipes license checksum

Signed-off-by: Mei Lei <lei.mei@intel.com>
13 years agosiggen.py: set 'runtaskdeps' correctly
Kevin Tian [Mon, 22 Nov 2010 12:52:27 +0000 (20:52 +0800)]
siggen.py: set 'runtaskdeps' correctly

Now 'runtaskdeps' is assigned before taskhash whitelist is filtered out, and thus
always contains original task dependencies. This causes problem to diagnose sstate
related problem. So fix it by appending filtered dep to 'runtaskdeps' in the fly.

Signed-off-by: Kevin Tian <kevin.tian@intel.com>
13 years agobitbake/utils.py: Improve traceback to be more helpful/clear to users
Richard Purdie [Sun, 5 Dec 2010 22:52:44 +0000 (22:52 +0000)]
bitbake/utils.py: Improve traceback to be more helpful/clear to users

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
13 years agobitbake/utils.py: Ensure the last lines of functions are printed in tracebacks
Richard Purdie [Sun, 5 Dec 2010 22:51:38 +0000 (22:51 +0000)]
bitbake/utils.py: Ensure the last lines of functions are printed in tracebacks

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
13 years agoDrop AUTOTOOLS_STAGE_PKGCONFIG variable as its not used anywhere
Richard Purdie [Sun, 5 Dec 2010 20:38:46 +0000 (20:38 +0000)]
Drop AUTOTOOLS_STAGE_PKGCONFIG variable as its not used anywhere

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
13 years agoRevert "qemugl: upgrade to git commit 33466cd83c2a9d7d3fb9fe437fb6a4d6fbd866b9"
Saul Wold [Thu, 2 Dec 2010 22:53:42 +0000 (14:53 -0800)]
Revert "qemugl: upgrade to git commit 33466cd83c2a9d7d3fb9fe437fb6a4d6fbd866b9"

This reverts commit 4bcba3fb12bf2ea7ac952f97a44c8881703935dd.
The qemugl is not building so I am reverting this update until
it's resolved.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agoRevert "gssdp: Upgrade to version 0.9.0"
Saul Wold [Fri, 3 Dec 2010 00:15:45 +0000 (16:15 -0800)]
Revert "gssdp: Upgrade to version 0.9.0"

This reverts commit 0cd2a26ff6fe573ffcec942f2db4e96db2d391e7.
This does not build, so reverting

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agoRevert "gssdp: Disable gobject introspection explicitly"
Saul Wold [Fri, 3 Dec 2010 00:14:33 +0000 (16:14 -0800)]
Revert "gssdp: Disable gobject introspection explicitly"

This reverts commit 35c948f38495d49dde1043d14a914cf4047a972a.
There is not --disable-interospection

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agolibart-lgpl: Add missing config file - allows builds on PowerPC
Gary Thomas [Sun, 28 Nov 2010 13:21:28 +0000 (06:21 -0700)]
libart-lgpl: Add missing config file - allows builds on PowerPC

Signed-off-by: Gary Thomas <gary@mlbassoc.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agolibrsvg: fix gdk-pixbuf-query-loaders not found in path
Adrian Alonso [Thu, 2 Dec 2010 02:36:20 +0000 (19:36 -0700)]
librsvg: fix gdk-pixbuf-query-loaders not found in path

* Fix configure: error: gdk-pixbuf-query-loaders not found in path
* Bump PR
[sgw@linux.intel.com: cleaned up patch whitespace issues]

Signed-off-by: Adrian Alonso <aalonso@secretlab.ca>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
svg

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agolibnl: fix parallel make
Qing He [Fri, 3 Dec 2010 03:12:55 +0000 (11:12 +0800)]
libnl: fix parallel make

lex/yacc generated header file should be explicitly listed for
makefile dependency

also add flex-native and bison-native for the recipe

Signed-off-by: Qing He <qing.he@intel.com>
13 years agoopkg-config-base:Add license checksum to bb file
Mei Lei [Fri, 26 Nov 2010 07:52:18 +0000 (15:52 +0800)]
opkg-config-base:Add license checksum to bb file

Add COPYING.MIT file checksum to bb file

Signed-off-by: Mei Lei <lei.mei@intel.com>
13 years agogssdp: Disable gobject introspection explicitly
Richard Purdie [Thu, 2 Dec 2010 13:57:53 +0000 (05:57 -0800)]
gssdp: Disable gobject introspection explicitly

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
13 years agotable move missing patch back to correct location
Saul Wold [Thu, 2 Dec 2010 05:19:36 +0000 (21:19 -0800)]
table move missing patch back to correct location

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agotask-poky-clutter: remove cairo packages
Saul Wold [Thu, 2 Dec 2010 05:15:43 +0000 (21:15 -0800)]
task-poky-clutter: remove cairo packages

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agopreferred-xorg-versions: updated for lastest package updates
Saul Wold [Wed, 1 Dec 2010 00:27:19 +0000 (16:27 -0800)]
preferred-xorg-versions: updated for lastest package updates

Signed-off-by: Saul Wold <Saul.Wold@intel.com>
13 years agoworld-broken: cleanup post reorg and world cleanup
Saul Wold [Tue, 30 Nov 2010 19:36:26 +0000 (11:36 -0800)]
world-broken: cleanup post reorg and world cleanup

Signed-off-by: Saul Wold <Saul.Wold@intel.com>
13 years agodhcp: fix cross build
Qing He [Tue, 30 Nov 2010 05:45:21 +0000 (13:45 +0800)]
dhcp: fix cross build

the new internal bind9 is not cross compiling friendly, use
the external library

Signed-off-by: Qing He <qing.he@intel.com>
13 years agobind: add new recipe
Qing He [Tue, 30 Nov 2010 05:35:42 +0000 (13:35 +0800)]
bind: add new recipe

version 9.7.2-P2
based on bind recipe from openembedded

the exportlib is used by building dhcp

Signed-off-by: Qing He <qing.he@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agotable.inc: correct version number
Saul Wold [Tue, 30 Nov 2010 01:20:14 +0000 (17:20 -0800)]
table.inc: correct version number

Signed-off-by: Saul Wold <Saul.Wold@intel.com>
13 years agoeds-tools: Fix SRCREV and add LIC_FILE_CHKSUM
Saul Wold [Tue, 30 Nov 2010 01:18:32 +0000 (17:18 -0800)]
eds-tools: Fix SRCREV and add LIC_FILE_CHKSUM

Signed-off-by: Saul Wold <Saul.Wold@intel.com>
13 years agogobject-introspection: Fix pathfix.patch to correct glibconfig.h location
Saul Wold [Tue, 30 Nov 2010 01:03:23 +0000 (17:03 -0800)]
gobject-introspection: Fix pathfix.patch to correct glibconfig.h location

Signed-off-by: Saul Wold <Saul.Wold@intel.com>
13 years agoqemugl: upgrade to git commit 33466cd83c2a9d7d3fb9fe437fb6a4d6fbd866b9
Yu Ke [Sun, 28 Nov 2010 03:33:34 +0000 (11:33 +0800)]
qemugl: upgrade to git commit 33466cd83c2a9d7d3fb9fe437fb6a4d6fbd866b9

qemugl has no update since May 2009. Compared to current SRCREV, there is 3 new commit in upstream. So simply upgrade the SRCREV to the latest commit of May 2009, to include the 3 new commits.

Signed-off-by: Yu Ke <ke.yu@intel.com>
13 years agomesa-dri-glsl-native: upgrade from 7.8.2 to 7.9
Yu Ke [Sun, 28 Nov 2010 02:10:07 +0000 (10:10 +0800)]
mesa-dri-glsl-native: upgrade from 7.8.2 to 7.9

with the following changes
- add license checksum
- add dependency of talloc-native, because mesa 7.9 start to use talloc to manage its memory.

Signed-off-by: Yu Ke <ke.yu@intel.com>
13 years agomesa-demo: add new recpies mesa demo 8.0.2
Yu Ke [Sat, 27 Nov 2010 11:45:12 +0000 (19:45 +0800)]
mesa-demo: add new recpies mesa demo 8.0.2

mesa-demo is originally part of mesa in 7.8 or earlier version. But starting from 7.9, mesa-demo become a seperate tar ball and has its own version 8.0.2, so this commit add new recipe for mesa-demos

Signed-off-by: Yu Ke <ke.yu@intel.com>
13 years agoglew: add new recipes glew 1.5.7
Yu Ke [Sat, 27 Nov 2010 12:48:49 +0000 (20:48 +0800)]
glew: add new recipes glew 1.5.7

The OpenGL Extension Wrangler Library (GLEW) is a cross-platform open-source C/C++ extension loading library. GLEW provides efficient run-time mechanisms for determining which OpenGL extensions are supported on the target platform.

mesa-demos requires glew, so port it from OE, with the following changes:
- upgrade it from 1.5.1 to 1.5.7
- add license checksum

Signed-off-by: Yu Ke <ke.yu@intel.com>
13 years agomesa: enable glu
Yu Ke [Sat, 27 Nov 2010 13:43:34 +0000 (21:43 +0800)]
mesa: enable glu

GLU is needed by glew, which in turn needed by mesa-demos

Signed-off-by: Yu Ke <ke.yu@intel.com>
13 years agomesa-xlib: upgrade from 7.8.2 to 7.9
Yu Ke [Sat, 27 Nov 2010 01:24:56 +0000 (09:24 +0800)]
mesa-xlib: upgrade from 7.8.2 to 7.9

- starting from mesa 7.9, mesa-demos is not bundled with mesa in upstream, so remove the mesa demo in mesa recipes. there will be a seperate recipes to build mesa-demos

Signed-off-by: Yu Ke <ke.yu@intel.com>
13 years agomesa-dri: upgrade from 7.8.2 to 7.9
Yu Ke [Wed, 24 Nov 2010 04:51:42 +0000 (12:51 +0800)]
mesa-dri: upgrade from 7.8.2 to 7.9

with the following changes:

- remove mesa-demos, because starting from mesa 7.9,
  mesa-demos becomes a standalone src tar ball in
  upstream, so there will be a seperate recipes to
  build the mesa-demos

- add dependency of talloc and libxml2-native

Signed-off-by: Yu Ke <ke.yu@intel.com>
13 years agotalloc: add new recipes talloc 2.0.1
Yu Ke [Wed, 24 Nov 2010 04:50:55 +0000 (12:50 +0800)]
talloc: add new recipes talloc 2.0.1

talloc is a hierarchical, reference counted memory pool system with destructors.
It is the core memory allocator used in Samba. Mesa7.9 also depends on it,so add
it for mesa7.9.

It is ported from OpenEmbedded, with some format modification.

Signed-off-by: Yu Ke <ke.yu@intel.com>
13 years agolibxml2-native: remove the --without-debug option
Yu Ke [Fri, 26 Nov 2010 11:48:11 +0000 (19:48 +0800)]
libxml2-native: remove the --without-debug option

mesa 7.9 build script es_generator.py use libxml2 API xmlLsCountNode,
which only available in debug module, so remove the --without-debug
option for mesa 7.9

Signed-off-by: Yu Ke <ke.yu@intel.com>
13 years agosqlite: upgrade from 3.6.23 to 3.7.3
Yu Ke [Wed, 24 Nov 2010 04:53:31 +0000 (12:53 +0800)]
sqlite: upgrade from 3.6.23 to 3.7.3

Signed-off-by: Yu Ke <ke.yu@intel.com>
13 years agozeroconf: Fix LICENSE and LIC_FILES_CHKSUM info
Dongxiao Xu [Mon, 29 Nov 2010 03:27:50 +0000 (11:27 +0800)]
zeroconf: Fix LICENSE and LIC_FILES_CHKSUM info

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>