]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/log
thirdparty/openembedded/openembedded-core-contrib.git
14 years agoFix typos in local.conf.sample and local.conf.sample.extended
Robert Yang [Tue, 11 Oct 2011 08:25:29 +0000 (16:25 +0800)] 
Fix typos in local.conf.sample and local.conf.sample.extended

Fixes bug [YOCTO #1667]

Fix typos in local.conf.sample and local.conf.sample.extended:

differernt -> different
chages -> changes
complation -> compilation
egde -> edge
"an an" -> "as an"
images's -> image's

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoFix sysprof for powerpc64
Matthew McClintock [Wed, 5 Oct 2011 21:26:49 +0000 (16:26 -0500)] 
Fix sysprof for powerpc64

__ppc64__ is not defined on powerpc64, rather __powerpc64__ is, this
uses a patch that is already upstream to fix builds for powerpc64

(From OE-Core rev: 4732222c46652951e66aae377631f4a361179d8f)

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoFix mdadm for powerpc64
Matthew McClintock [Wed, 5 Oct 2011 22:13:08 +0000 (17:13 -0500)] 
Fix mdadm for powerpc64

This takes an upstream fix for compiling on powerpc64

(From OE-Core rev: 1325f506972555d4c218c15090bfa3f63fb13473)

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoshared-mime-info: Upgrade recipes from 0.90 -> 0.91
Khem Raj [Wed, 5 Oct 2011 19:46:12 +0000 (12:46 -0700)] 
shared-mime-info: Upgrade recipes from 0.90 -> 0.91

The parallel build problems are solved upstream therefore removed

License file has been corrected to use 'GNU Lesser GPL' instead of
'GNU library GPL' and some indentation changes

The license is LGPLv2+ therefore mark it so

(From OE-Core rev: 30e8ceb8d78d9dd0a381dd4e47da2ec6c449beaf)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agogdk-pixbuf: upgrade to 2.24.6
Martin Jansa [Fri, 30 Sep 2011 15:43:26 +0000 (17:43 +0200)] 
gdk-pixbuf: upgrade to 2.24.6

* older version doesn't build with glib-2.30.0

(From OE-Core rev: 169a524d86ee0647b9ecf8b9a70c750df6582a1a)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agozlib: fix inverted LFS logic
Martin Jansa [Fri, 30 Sep 2011 15:43:25 +0000 (17:43 +0200)] 
zlib: fix inverted LFS logic

(From OE-Core rev: 6dd3f5c2f300c9cb5b6dbe2afe67323fc6f44c3e)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agogstreamer: upgrade to 0.10.35
Martin Jansa [Fri, 30 Sep 2011 15:43:24 +0000 (17:43 +0200)] 
gstreamer: upgrade to 0.10.35

(From OE-Core rev: 4b469908a15dc3730e75740c106f3ae89ba51b99)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agolibglade: add gdk-pixbuf dependency
Martin Jansa [Fri, 30 Sep 2011 15:43:23 +0000 (17:43 +0200)] 
libglade: add gdk-pixbuf dependency

(From OE-Core rev: eb709fceacab3ec33f38694d6238b96cb0474848)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoUse useradd and update-rc.d classes in the OpenSSH recipe
Julian Pidancet [Fri, 7 Oct 2011 00:13:41 +0000 (01:13 +0100)] 
Use useradd and update-rc.d classes in the OpenSSH recipe

The current sshd postinst and postrm scripts in the OpenSSH make the
package dependant of the adduser/addgroup scripts which may not be
available on all systems.

This patch replaces the sshd postinst and postrm scripts with proper
usage of the useradd and update-rc.d classes.

This patch had been modified from the previous proposed version to
use useradd long options for more clarity.

(From OE-Core rev: 6b7f399d595ef58e759dab211f4ece155119a680)

Signed-off-by: Julian Pidancet <julian.pidancet@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoFix the --root option in shadow-native programs
Julian Pidancet [Fri, 7 Oct 2011 00:13:40 +0000 (01:13 +0100)] 
Fix the --root option in shadow-native programs

The add_root_cmd_options.patch that we apply to shadow-native allow the
various programs from the shadow utility package to chroot() so they can
be used to modify etc/passwd and etc/group if they are located in a
sysroot.

Some of the shadow programs (gpasswd, useradd and usermod) need to parse
the command line in two passes. But we can't use getopt_long() twice
because getopt_long() reorders the command line arguments, and
consequently corrupts the option parsing during the second pass.

This patch fixes this issue by replacing the first pass by a very simple
manual walk of the command line to handle the --root argument.

This change is a patch of another patch, I apologize if it is
difficult to read. But IMHO it wouldn't make sense to put the patch for
this issue in another separated file.

The --root options in groupadd and useradd are needed to make the
useradd class work, and this issue was preventing to use useradd and
groupadd long options while using the class.

(From OE-Core rev: 6e9e19b18597103d8fe09f258cfd9904bb5f1c27)

Signed-off-by: Julian Pidancet <julian.pidancet@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoAllow user mode NFS server to run without rpcbind / portmap
Jason Wessel [Wed, 5 Oct 2011 15:26:30 +0000 (10:26 -0500)] 
Allow user mode NFS server to run without rpcbind / portmap

and nfsroot mount without the need to talk to an RPC info
server as long as the port numbers for mountd and nfsd
are known in advance.

This patch updates the qemu startup scripts and the
user mode NFS server to have the ability to start
without the need to use rpcbind or portmap services.

(From OE-Core rev: 3b1346c607c41a2d592c48594457c32153cb2314)

Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agofont-alias: Convert to use allarch including a patch to disable compiler checks
Richard Purdie [Fri, 7 Oct 2011 14:13:10 +0000 (15:13 +0100)] 
font-alias: Convert to use allarch including a patch to disable compiler checks

(From OE-Core rev: b0c111fd15be671be77ce886e28c05835f159ce6)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agohicolor-icon-theme: Convert to allarch
Richard Purdie [Fri, 7 Oct 2011 14:11:57 +0000 (15:11 +0100)] 
hicolor-icon-theme: Convert to allarch

(From OE-Core rev: 52b39699a3ec5f4e95262cf8d1be1342e03d5769)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agogcc/binutils: Disable NLS/gettext dependencies
Richard Purdie [Fri, 7 Oct 2011 13:19:15 +0000 (14:19 +0100)] 
gcc/binutils: Disable NLS/gettext dependencies

We force the C locale when running builds for determinstic error messages. We
therefore have no need to NLS support in binutils cross or gcc cross.

We also don't need the standard base/autotools dependencies for our
toolchain components since we don't autoreconf these.

This patch turns off nls and cleans up some of the dependencies resulting
in a slightly less convoluted set of build dependencies.

(From OE-Core rev: 54a3e2ee37003fc56af0339f857b0b6442790c26)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agolibc-package.bbclass: Use a makefile for locale gernation to increase parallelization
Richard Purdie [Fri, 7 Oct 2011 12:25:44 +0000 (13:25 +0100)] 
libc-package.bbclass: Use a makefile for locale gernation to increase parallelization

We can generate the locales in parallel. The easiest way to do this is
generate a Makefile and then run this with our usual parallel make
options.

[YOCTO #1554]

(From OE-Core rev: 6ce8d028f2a542eceb270aeb511929953a859d39)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoconnman: Drop hal dependency and udev configure option, neither is used
Richard Purdie [Fri, 7 Oct 2011 10:17:45 +0000 (11:17 +0100)] 
connman: Drop hal dependency and udev configure option, neither is used

(From OE-Core rev: d5be373b9d967a58d33e71e440daaaca6444987a)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agotask-core-basic: Drop hal dependency, its deprecated
Richard Purdie [Fri, 7 Oct 2011 10:16:54 +0000 (11:16 +0100)] 
task-core-basic: Drop hal dependency, its deprecated

(From OE-Core rev: 8a6ec042d73c82b657ee5e7b785e5eba3958788e)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoqt-demo-init/linux-firmware/adt-installer: Convert to Use allarch class file
Richard Purdie [Fri, 7 Oct 2011 13:03:20 +0000 (14:03 +0100)] 
qt-demo-init/linux-firmware/adt-installer: Convert to Use allarch class file

(From OE-Core rev: 75d5e1abb9b1ef9e21be3ec270a7ed43d157d734)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agognutls: Disable p11-kit dependency explicitly to resolve build failures
Richard Purdie [Fri, 7 Oct 2011 13:04:18 +0000 (14:04 +0100)] 
gnutls: Disable p11-kit dependency explicitly to resolve build failures

(From OE-Core rev: 808b3123e359f1aebabb8af44694275e4075e031)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agomutter: update to 2.29.1 and fix SRC_URI
Joshua Lock [Thu, 6 Oct 2011 22:11:07 +0000 (15:11 -0700)] 
mutter: update to 2.29.1 and fix SRC_URI

mutter has been hosted by the gnome community for some time now, update the
recipe to use the new SRC_URI and a more recernt version - this is the last
version to support Gtk+ 2.

(From OE-Core rev: 0d7d464bc66318684f85d9b725a0a5ab62a09224)

Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agopkgconfig: Fix logic that was accidently leaving legacy pkg-config functionality...
Richard Purdie [Wed, 5 Oct 2011 17:59:31 +0000 (18:59 +0100)] 
pkgconfig: Fix logic that was accidently leaving legacy pkg-config functionality enabled

(From OE-Core rev: aa816b0aaf39dc6f822114df0bd6d4dd62fce0b8)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoutil-linux: split fsck* into its own subpackage
Koen Kooi [Thu, 6 Oct 2011 14:59:45 +0000 (16:59 +0200)] 
util-linux: split fsck* into its own subpackage

This will allow systemd to run /sbin/fsck without dragging in all of util-linux

(From OE-Core rev: 4c95779fe1297b06adc705de30dca4e3570084ae)

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoacl/attr: don't make symlink if base_libdir = libdir
Saul Wold [Thu, 6 Oct 2011 18:25:56 +0000 (11:25 -0700)] 
acl/attr: don't make symlink if base_libdir = libdir

(From OE-Core rev: 46cd3527217821a7e9a8223dc45a43294b6c5e8d)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodistro_tracking: Updates
Saul Wold [Wed, 5 Oct 2011 03:54:15 +0000 (20:54 -0700)] 
distro_tracking: Updates

(From OE-Core rev: faaf7cc699e77454fc1e41e380655b99c05a19a0)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agolsof: Update to 4.84
Saul Wold [Wed, 5 Oct 2011 00:53:29 +0000 (17:53 -0700)] 
lsof: Update to 4.84

(From OE-Core rev: ef691e90b98d5044f96d1aca7aa0ee5faa725b0f)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agotzdata: Update to 2011k
Saul Wold [Wed, 5 Oct 2011 00:53:11 +0000 (17:53 -0700)] 
tzdata: Update to 2011k

(From OE-Core rev: 6b77b75ec8552c5e7aa90f81e7b272f24df31058)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agognutls: Update to 2.12.11
Saul Wold [Wed, 5 Oct 2011 00:52:16 +0000 (17:52 -0700)] 
gnutls: Update to 2.12.11

(From OE-Core rev: c30c193d79437261ea4e2184f200c33cfd554e9e)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agopuzzles: Update to latest version
Saul Wold [Wed, 5 Oct 2011 00:17:14 +0000 (17:17 -0700)] 
puzzles: Update to latest version

(From OE-Core rev: 447ea27c510df73e94351fac9adf4f37d6cd44b9)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoboost-jam-native: Add SRC_URI Checksum
Saul Wold [Wed, 5 Oct 2011 00:06:34 +0000 (17:06 -0700)] 
boost-jam-native: Add SRC_URI Checksum

(From OE-Core rev: e4a1bfbac41e2fbedecc406f0e8c8b20cd22994d)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agogail: Add SRC_URI Checksum
Saul Wold [Wed, 5 Oct 2011 00:04:58 +0000 (17:04 -0700)] 
gail: Add SRC_URI Checksum

(From OE-Core rev: d60acd1d3abca20edb9e542de59630ff49100b0c)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agogconf-dbus: Add SRC_URI Checksum
Saul Wold [Wed, 5 Oct 2011 00:04:09 +0000 (17:04 -0700)] 
gconf-dbus: Add SRC_URI Checksum

(From OE-Core rev: f29f81827d7fa923f57766bc75796e836d6b1dcd)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoliburi-perl: Add SRC_URI Checksum
Saul Wold [Wed, 5 Oct 2011 00:02:48 +0000 (17:02 -0700)] 
liburi-perl: Add SRC_URI Checksum

(From OE-Core rev: 90319541385b9e84b373d2fbbc886ac6474fd4ac)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agolibxml-perl: Add SRC_URI Checksum
Saul Wold [Wed, 5 Oct 2011 00:02:08 +0000 (17:02 -0700)] 
libxml-perl: Add SRC_URI Checksum

(From OE-Core rev: 49879562d9985da9f7caa2acdd5646eb0363d504)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoicon-naming-utils: Add SRC_URI Checksum
Saul Wold [Tue, 4 Oct 2011 23:59:57 +0000 (16:59 -0700)] 
icon-naming-utils: Add SRC_URI Checksum

(From OE-Core rev: c41ab98430739a50cfb72d6bdd25a7935c92b1e7)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agomutter: Add SRC_URI Checksum
Saul Wold [Tue, 4 Oct 2011 23:58:32 +0000 (16:58 -0700)] 
mutter: Add SRC_URI Checksum

(From OE-Core rev: b051eca254e8e097f58590a33e027403df3db647)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoxserver-kdrive: Add SRC_URI Checksum
Saul Wold [Tue, 4 Oct 2011 23:56:57 +0000 (16:56 -0700)] 
xserver-kdrive: Add SRC_URI Checksum

(From OE-Core rev: 46aa62e7f27c3419cfbf20eab4c6d3bb7d7ecd7a)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoclutter-gst-1.6: Add SRC_URI Checksum
Saul Wold [Tue, 4 Oct 2011 23:56:34 +0000 (16:56 -0700)] 
clutter-gst-1.6: Add SRC_URI Checksum

(From OE-Core rev: 61490712e37a1d3300eb0da9424ff94e270edb02)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoeds-tools: Convert from BZR to GIT Repo
Saul Wold [Tue, 4 Oct 2011 23:48:21 +0000 (16:48 -0700)] 
eds-tools: Convert from BZR to GIT Repo

(From OE-Core rev: b83e4e1aeed115a2b495e54b0122ccf76b4d2eed)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agolibx11-diet: Add SRC_URI Checksum
Saul Wold [Tue, 4 Oct 2011 23:53:00 +0000 (16:53 -0700)] 
libx11-diet: Add SRC_URI Checksum

(From OE-Core rev: 0ab7f6d84d036e5721f7c7585f13c00df16075bf)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoguilt-native: Add SRC_URI Checksums
Saul Wold [Tue, 4 Oct 2011 23:49:23 +0000 (16:49 -0700)] 
guilt-native: Add SRC_URI Checksums

(From OE-Core rev: 77528ac80ab8f41075150f3dded147b0feece67a)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agolibx11-trim: Add SRC_URI Checksum
Saul Wold [Tue, 4 Oct 2011 23:47:58 +0000 (16:47 -0700)] 
libx11-trim: Add SRC_URI Checksum

(From OE-Core rev: be8843ebfcc84a27111c1d020917e72233176651)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodosfstools: Add SRC_URI Checksum
Saul Wold [Tue, 4 Oct 2011 23:46:23 +0000 (16:46 -0700)] 
dosfstools: Add SRC_URI Checksum

(From OE-Core rev: a19bfc10e60ddc7e9317654ca7565d39acbc3987)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agogrub: Add SRC_URI Checksum
Saul Wold [Tue, 4 Oct 2011 23:46:04 +0000 (16:46 -0700)] 
grub: Add SRC_URI Checksum

(From OE-Core rev: 81dd5411a51959c95a9939f626ea605b3818be70)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoxserver-xf86: Use PACKAGECONFIG for udev/hal choice and default to udev
Richard Purdie [Thu, 6 Oct 2011 22:16:14 +0000 (23:16 +0100)] 
xserver-xf86: Use PACKAGECONFIG for udev/hal choice and default to udev

(From OE-Core rev: 55fe7a29e059a3e09e04896b18bb751da3cd8530)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agonative.bbclass: Ensure native recipes have a deterministic baselib value
Richard Purdie [Thu, 6 Oct 2011 22:13:54 +0000 (23:13 +0100)] 
native.bbclass: Ensure native recipes have a deterministic baselib value

Changes to baselib by specific machine configuration were resulting
in sstate cache invalidation, particularly in multilib configurations.

This patch ensures this doesn't happen and native sstate cache files
are reusable.

(From OE-Core rev: d0915fb0a2cc80ad45b3fd526d3b29a91d99572c)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agosstate.bbclass: Ensure machine specific stamps are only wiped for the current task
Richard Purdie [Thu, 6 Oct 2011 22:11:18 +0000 (23:11 +0100)] 
sstate.bbclass: Ensure machine specific stamps are only wiped for the current task

sstate was being a little too ethusiastic about removing stamp files and
was removing stamp files for other machines when it shouldn't have been.

This patch teaches sstate about machine specific stamp extensions and
allows it to only remove the current task's stampfiles.

Based on a patch from Phil Blundell <philb@gnu.org> with some tweaks
from me.

(From OE-Core rev: 5e9488495401399d39fcb5012b86c313b6caca73)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoimage.bbclass: No need to run most tasks except do_rootfs
Richard Purdie [Thu, 6 Oct 2011 22:09:49 +0000 (23:09 +0100)] 
image.bbclass: No need to run most tasks except do_rootfs

Running fetch/unpack/patch/compile/install etc. is pointless
since the only image task that does anything is the rootfs task.

Hence mark the useless tasks as noexec so we don't bother running them.

(From OE-Core rev: b3d1c440feb7fd7b3e3374ca528195ab9bd3a7ce)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agobase.bbclass: Implement PACKAGECONFIG
Richard Purdie [Thu, 6 Oct 2011 22:06:32 +0000 (23:06 +0100)] 
base.bbclass: Implement PACKAGECONFIG

These enabled options to be specified in the form:

PACKAGECONFIG ?? = "<default options>"
PACKAGECONFIG[foo] = "--enable-foo,--disable-foo,foo_depends,foo_runtime_depends"

So that DEPENDS, RDEPENDS_${PN} and EXTRA_OECONF can be automatically
built from specific options. Those options can easily be customised
by the distro config or the user.

Based on some ideas from Chris Elston <celston@katalix.com> but with
an improved easier to use one line interface.

(From OE-Core rev: 7a58911f6951abd56db9ebb37f8d6284d91fa514)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agobase.bbclass: Minor cleanup
Richard Purdie [Thu, 6 Oct 2011 22:06:21 +0000 (23:06 +0100)] 
base.bbclass: Minor cleanup

(From OE-Core rev: 373db49de0e30239fc8c7c3ce74d635fd7d6cd70)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agometa-yocto/qt4: Update bbappend to new version
Richard Purdie [Fri, 7 Oct 2011 10:07:12 +0000 (11:07 +0100)] 
meta-yocto/qt4: Update bbappend to new version

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agolocal.conf.sample: Disable interactive patch resolution for now since doesn't work...
Richard Purdie [Thu, 6 Oct 2011 23:00:21 +0000 (00:00 +0100)] 
local.conf.sample: Disable interactive patch resolution for now since doesn't work well

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/dev-manual/dev-manual-kernel-appendix.xml: config example
Scott Rifenbark [Wed, 5 Oct 2011 19:07:29 +0000 (12:07 -0700)] 
documentation/dev-manual/dev-manual-kernel-appendix.xml: config example

I had to add some changes to the way we invoke qemu to show multiple
processor support.  I needed the qemuparam "-smp 2".  There are
other minor edits as well.

(From yocto-docs rev: 508863634ce537b0936f8e44f87b90bef678c122)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/yocto-project-qs/yocto-project-qs.xml: release name and misc.
Scott Rifenbark [Wed, 5 Oct 2011 19:05:41 +0000 (12:05 -0700)] 
documentation/yocto-project-qs/yocto-project-qs.xml: release name and misc.

I somehow had either dreamed the word "einstein" into the release
for 1.1 and had it in there as part of the tarball name, etc.
I have replaced this obviously with "edison."

Other edits involved making the references to outside documents
more consistent.

(From yocto-docs rev: 2407b7dd89712c489d515e97d44e3c7dc0b64d20)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/dev-manual/figures/kernel-example-repos.png: updated figure
Scott Rifenbark [Wed, 5 Oct 2011 12:59:12 +0000 (05:59 -0700)] 
documentation/dev-manual/figures/kernel-example-repos.png: updated figure

Changed the pathnames for kernel 3.0 from 2.37

(From yocto-docs rev: 220ce5fbb3663940b5940445190d30d98f58a438)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/dev-manual/dev-manual-kernel-appendix.xml: edits to the example
Scott Rifenbark [Wed, 5 Oct 2011 12:52:39 +0000 (05:52 -0700)] 
documentation/dev-manual/dev-manual-kernel-appendix.xml: edits to the example

Some minor edits for the kernel example.

(From yocto-docs rev: 01e9f01662efad746fbfc34820b6efeb34affecd)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation: Fixed links for yocto-1.1
Scott Rifenbark [Wed, 5 Oct 2011 12:26:52 +0000 (05:26 -0700)] 
documentation: Fixed links for yocto-1.1

After greping through the documentation directory, I addressed
all the <ulink> statements that used to have yocto-1.0 in the URL.
They are now yocto-1.1.

(From yocto-docs rev: 97d160263c5905fdeaf4ec285bc5359918790581)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agowebkit-gtk: Enable dependency tracking since the webkit makefiles have bugs
Richard Purdie [Wed, 5 Oct 2011 13:36:18 +0000 (14:36 +0100)] 
webkit-gtk: Enable dependency tracking since the webkit makefiles have bugs

(From OE-Core rev: cc626b9e1671670a931ea3e528ea4b0f7b2e923b)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoautotools.bbclass: Allow dependency tracking option to be easily overridden
Richard Purdie [Tue, 4 Oct 2011 12:37:46 +0000 (13:37 +0100)] 
autotools.bbclass: Allow dependency tracking option to be easily overridden

(From OE-Core rev: c353a60bd8a6151a3538f0900aff0b5856aa0684)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoscripts/oe-buildenv-internal: Add SOCKS5_{USER, PASSWD} to BB_ENV_EXTRAWHITE
Kumar Gala [Tue, 4 Oct 2011 22:03:05 +0000 (17:03 -0500)] 
scripts/oe-buildenv-internal: Add SOCKS5_{USER, PASSWD} to BB_ENV_EXTRAWHITE

If a SOCKS5 gateway is needed for a proxy access like git it might also
require authentication to the proxy via a password and username.  Adding
SOCKS5_USER & SOCKS5_PASSWD to BB_ENV_EXTRAWHITE allow for automation
of the authentication request to occur when something like a git fetch
is going through the proxy.

This patch requires the bitbake patch to add extra exportvars so
these variables get passed from Env -> bitbake -> fetcher

(From OE-Core rev: 9206ea0f7cd39d2ba6ff4b41cbeb17409d3ae5f1)

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agofetch2: Export additional variables to the fetchers
Matthew McClintock [Tue, 4 Oct 2011 19:08:37 +0000 (14:08 -0500)] 
fetch2: Export additional variables to the fetchers

git could need these environment variables when working behind
a proxy

(Bitbake rev: dca46cc2e1c75b6add2c4801e2994a4812745f5b)

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agogdb-cross-canadian: Fix source directory S
Richard Purdie [Wed, 5 Oct 2011 18:00:00 +0000 (19:00 +0100)] 
gdb-cross-canadian: Fix source directory S

(From OE-Core rev: 42f510b2eec3fadbeb0ce2793de8f29e7cba1ad7)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agomtools: Disable parallel make install, its broken
Richard Purdie [Wed, 5 Oct 2011 17:58:49 +0000 (18:58 +0100)] 
mtools: Disable parallel make install, its broken

(From OE-Core rev: 6f64114f5825bf6f6ab8eaaf4bed24586e05ee57)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agokexec-tools: fix architecture mismatch QA error
Tom Zanussi [Sat, 1 Oct 2011 15:05:34 +0000 (10:05 -0500)] 
kexec-tools: fix architecture mismatch QA error

Building sato-sdk for an x86_64 target throws this QA error:

| ERROR: QA Issue: Architecture did not match (62 to 3) on /work/x86_64-poky-li\
nux/kexec-tools-2.0.2-r1/packages-split/kexec-tools/usr/lib/kexec-tools/kexec_t\
est

kexec_test uses 32-bit code for testing - add an INSANE_SKIP exception for it.

(From OE-Core rev: 0dbf91969bb16f4761f58426ff5b458139c4e235)

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/dev-manual/figures/wip.png: new figure added.
Scott Rifenbark [Tue, 4 Oct 2011 19:53:11 +0000 (12:53 -0700)] 
documentation/dev-manual/figures/wip.png: new figure added.

(From yocto-docs rev: f373d2b9f3530e31dc84b9333cfef93cdfd2c5e2)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/dev-manual/dev-manual-start.xml: console updates and tar update
Scott Rifenbark [Tue, 4 Oct 2011 19:49:27 +0000 (12:49 -0700)] 
documentation/dev-manual/dev-manual-start.xml: console updates and tar update

I re-ran the exmaples to set up various Git repos and updated the output.

Also fixed a bad tarball name from edison-1.1 to edison-6.0

(From yocto-docs rev: 6538d588fa35986ff301a22d327af73c337ec43c)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/dev-manual/dev-manual-kernel-appendix.xml: general updates
Scott Rifenbark [Tue, 4 Oct 2011 13:54:04 +0000 (06:54 -0700)] 
documentation/dev-manual/dev-manual-kernel-appendix.xml: general updates

I made a pass through the book to clean up all areas in preparation to
running the examples again.  Most changes were punctuation, manual
section reference formats, and wordings.

(From yocto-docs rev: 0d054f79c82ddc204938dea187312d1a80d0a2e1)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumenation/Makefile: Added a "WIP" figure dev manual for future work.
Scott Rifenbark [Tue, 4 Oct 2011 13:53:13 +0000 (06:53 -0700)] 
documenation/Makefile: Added a "WIP" figure dev manual for future work.

(From yocto-docs rev: 90964c51b1cd848a7bb0ddce5dcfd0a0f8c86223)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/dev-manual/dev-manual-bsp-appendix.xml: changes to references
Scott Rifenbark [Tue, 4 Oct 2011 13:00:29 +0000 (06:00 -0700)] 
documentation/dev-manual/dev-manual-bsp-appendix.xml: changes to references

More changes to the internal section references.  Using <link> rather than
<xref> to get rid of the section number in the reference.

(From yocto-docs rev: 4351fd4898c517e25235611893b1cd059cbcc2f8)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumenation/dev-manual/dev-manual-bsp-appendix.xml: fixed reference form
Scott Rifenbark [Tue, 4 Oct 2011 12:56:17 +0000 (05:56 -0700)] 
documenation/dev-manual/dev-manual-bsp-appendix.xml: fixed reference form

I am using a certain form to reference other sections in the current
or other manual.  I updated the references to follow this form.

(From yocto-docs rev: 2ba41ac2f355dbe66af19e356f9246b7485585b5)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/dev-manual/dev-manual-bsp-appendix.xml: fixed typo.
Scott Rifenbark [Tue, 4 Oct 2011 12:35:38 +0000 (05:35 -0700)] 
documentation/dev-manual/dev-manual-bsp-appendix.xml: fixed typo.

(From yocto-docs rev: a66bb0402dd3f1499278277486e482b573a97777)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agorunqemu-export-rootfs: Add HOW-TO for ubuntu 11.10 for rpcbind problem
Khem Raj [Tue, 4 Oct 2011 19:32:43 +0000 (12:32 -0700)] 
runqemu-export-rootfs: Add HOW-TO for ubuntu 11.10 for rpcbind problem

The existing instruction to tackle
RPC: Authentication error; why = Client credential too weak
Are not applicable to ubuntu 11.10 especially

Therefore add the magic needed for ubuntu 11.10

(From OE-Core rev: faae191e8c1920745e0ea9abf7b8b26eb4561096)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agobootimg.bbclass: fix comment typo
Otavio Salvador [Sun, 2 Oct 2011 17:20:38 +0000 (17:20 +0000)] 
bootimg.bbclass: fix comment typo

(From OE-Core rev: 780685bbaf6d6f74aed77c412686592d6b9cf8e5)

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoimage-live.bbclass: allow images to override ROOTFS and INITRD
Otavio Salvador [Sun, 2 Oct 2011 17:22:20 +0000 (17:22 +0000)] 
image-live.bbclass: allow images to override ROOTFS and INITRD

(From OE-Core rev: e8011abfab79220102e4843d8a91655162140090)

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoimage.bbclass: improve comments regarding exported functions
Otavio Salvador [Sat, 3 Sep 2011 12:53:42 +0000 (12:53 +0000)] 
image.bbclass: improve comments regarding exported functions

(From OE-Core rev: 2097874dab4d6b77d7ece026808283381c2cbe1a)

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agolinux-yocto: update live boot configuration
Bruce Ashfield [Tue, 4 Oct 2011 21:00:56 +0000 (17:00 -0400)] 
linux-yocto: update live boot configuration

Updating the meta SRCREV to import a series of changes to synchronize
live booting between multiple targets:

  d05450e meta/fri2: enable booting from iso
  3da7d2a meta/fishriver: enable booting from iso
  52e1c49 meta/emenlow: enable booting from iso
  87918ae meta/crownbay: enable booting from iso

(From OE-Core rev: 7100c50c8697a3eec446b9189bf49ecbea9b7264)

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoqt4-embedded: move qt4-embedded-conf from RDEPENDS to RRECOMMENDS
James Limbouris [Tue, 4 Oct 2011 01:42:22 +0000 (09:42 +0800)] 
qt4-embedded: move qt4-embedded-conf from RDEPENDS to RRECOMMENDS

qt4-embedded-conf contains an environment setup script for profile.d.
It has been packaged seperately to allow for its exclusion, but this is
only practical if it is added to RRECOMMENDS, rather than RDEPENDS.

(From OE-Core rev: e0c2a62fcadc5095729229e83975f35fe0c3fa8f)

Signed-off-by: James Limbouris <james@digitalmatter.com.au>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoqt4: packaging fixup
Dmitry Eremin-Solenikov [Sun, 2 Oct 2011 21:46:11 +0000 (01:46 +0400)] 
qt4: packaging fixup

Improve packaging:
* Add phrasebook packages to DYNAMIC_PACKAGES
* Correct phrasebook packages generation
* Include more files into -dbg packages
* Package fontdir and fonts README.

(From OE-Core rev: 4e3c29dd90f583cafe7a7fc863efb3720096d67b)

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agoqt4: Fix translation support
Otavio Salvador [Sun, 2 Oct 2011 21:46:10 +0000 (01:46 +0400)] 
qt4: Fix translation support

The translation support was disable in build. The
fix-translation.patch was imported from OpenEmbedded to fix a linking
issue in phonon translation support.

[Dmitry Eremin-Solenikov: ported to apply to qt 4.7.4 build, bumped PR]

(From OE-Core rev: 4fc51a28bd171ea93fecee6326c69c6494023f76)

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agopoky.conf: Increment DISTRO_VERSION
Elizabeth Flanagan [Wed, 28 Sep 2011 23:01:23 +0000 (16:01 -0700)] 
poky.conf: Increment DISTRO_VERSION

With 1.1 release coming, it's time to increment the DISTRO_VERSION
and poky version.

Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/adt-manual: changes for Jessica's review.
Scott Rifenbark [Mon, 3 Oct 2011 19:07:21 +0000 (12:07 -0700)] 
documentation/adt-manual: changes for Jessica's review.

I made several changes based on feedback from Jessica Zhang.

1. Removed "SDKVERSION" as a way of identifying the directory in
   which a toolchain tarball is installed.  I replaced with "1.1"

2. Cleaned up the bitbake command verbage to consistently use
   'bitbake' command.

3. Cleaned up an erroneous reference to the toolchain environment
   setup scripts.  I was referring the user to the oe-init-build-env
   area.

4. Changed wording to indicate that the toolchain tarball is generated
   after running bitbake rather than installing the toolchain.

5. Replaced the gmae tarball file used in an example to be the
   regular taball.

(From yocto-docs rev: f7c3e4f4a666121a29825099d451eab1accb0616)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/dev-manual/dev-manual-start.xml: Updates for 1.1 repos names
Scott Rifenbark [Mon, 3 Oct 2011 18:42:56 +0000 (11:42 -0700)] 
documentation/dev-manual/dev-manual-start.xml: Updates for 1.1 repos names

I changed the bernard examples used when creating Git repos to reflect
the edison release.

(From yocto-docs rev: d345cb08905e7f5e21b1649af5e876317cc68931)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/dev-manual/dev-manual-bsp-appendix.xml: scrubbed example
Scott Rifenbark [Mon, 3 Oct 2011 18:41:12 +0000 (11:41 -0700)] 
documentation/dev-manual/dev-manual-bsp-appendix.xml: scrubbed example

I changed several small things in the example as I worked through it
once again.  The commit IDs changed for using the atom-pc kernel.
Also the command to build the sato image can no longer use 'live'.

(From yocto-docs rev: faff1e7f21b5059dfe708c6a3d83116c7349fe55)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/adt-manual/adt-eclipse.xml: edits to zip section
Scott Rifenbark [Mon, 3 Oct 2011 15:43:26 +0000 (08:43 -0700)] 
documentation/adt-manual/adt-eclipse.xml: edits to zip section

No need to use the long command to restart Eclipse.  It will have
been restarted as part of the procedure.  I updated the last paragraph
to simply point the user off to the next section.

(From yocto-docs rev: bca280e74f81a0401c520c8a59e9e07e16f28b8b)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/adt-manual/adt-eclipse.xml: updates to zip method of plugin install.
Scott Rifenbark [Mon, 3 Oct 2011 15:18:23 +0000 (08:18 -0700)] 
documentation/adt-manual/adt-eclipse.xml: updates to zip method of plugin install.

These changes are for installing the YP Eclipse plug-in using a built out
ZIP file.

(From yocto-docs rev: ea50f63d448b4ff6026a9334440058511782461d)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/poky-ref-manual/extendpoky.xml: multilib edits
Scott Rifenbark [Mon, 3 Oct 2011 14:42:20 +0000 (07:42 -0700)] 
documentation/poky-ref-manual/extendpoky.xml: multilib edits

Feedback from Richard Purdie inserted.  I made an edit pass for
style to Richard's re-write.

(From yocto-docs rev: e5bb08e966614c610e6357642b3b2d1522332f7f)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/adt-manual/adt-eclipse.xml: edits to the config steps
Scott Rifenbark [Fri, 30 Sep 2011 20:44:12 +0000 (13:44 -0700)] 
documentation/adt-manual/adt-eclipse.xml: edits to the config steps

I made some slight edits to configuring the Eclipse IDE and the
procedure to install the plug-in from the zip file.  This is not
complete yet.

(From yocto-docs rev: 96de3d21946d64e6b877f067912da8677c3d373a)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/kernel-manual/kernel-how-to.xml: Updated build strategy
Scott Rifenbark [Fri, 30 Sep 2011 18:13:31 +0000 (11:13 -0700)] 
documentation/kernel-manual/kernel-how-to.xml: Updated build strategy

This section used the term "tree construction" somewhat out of context.
The section really focuses on what the build process and the user does
prior to compilation.  I changed wording to indicate the tree is
validated to be sure that the SRC_URI point to the right stuff and
that the BSP build branch exists.

(From yocto-docs rev: e6332d5045b21354b53bbbe1203f9d52d4d97964)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/adt-manual/adt-prepare.xml: updates to getting images.
Scott Rifenbark [Fri, 30 Sep 2011 16:02:18 +0000 (09:02 -0700)] 
documentation/adt-manual/adt-prepare.xml: updates to getting images.

Made a few corrections to the section describing how to build
the tcf-agent into non-sdk images.

(From yocto-docs rev: e78dc3b3d3dd443506e78651cf9673358577c21d)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/adt-manual/adt-prepare.xml: Updated for building tcf-agent
Scott Rifenbark [Fri, 30 Sep 2011 15:34:48 +0000 (08:34 -0700)] 
documentation/adt-manual/adt-prepare.xml: Updated for building tcf-agent

The YP only ships one pre-built image that has the tcf-agent built
into it - core-image-sato-sdk.  There are a couple methods that exist
to create images that do not normally have this agent so that they
will have it.  I updated the "Getting the Images" section to
contain those steps.  Lianhao and Jessica Zhang were the technical
resources for these changes.  These changes are the first draft.

(From yocto-docs rev: 85432e4892c3fe924bf90961f89e8edfd9693e84)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/poky-ref-manual/extendpoky.xml: Multilib section added
Scott Rifenbark [Fri, 30 Sep 2011 14:11:33 +0000 (07:11 -0700)] 
documentation/poky-ref-manual/extendpoky.xml: Multilib section added

I created a section on how to prepare for and use the multilib
feature.  The information is leveraged off the "Multilib" wiki page
at http://wiki.yoctoproject.org/wiki/Multilib.  This is the first
draft of the changes.  I expect corrections.

(From yocto-docs rev: 8cf41c90f772018f4f144d63df911912cc298d70)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/adt-manual/adt-prepare.xml: changed link
Scott Rifenbark [Thu, 29 Sep 2011 20:18:34 +0000 (13:18 -0700)] 
documentation/adt-manual/adt-prepare.xml: changed link

Updated a link that was an autobuilder link to be
http://www.yoctoproject.org/downloads/yocto-1.1/machines.

(From yocto-docs rev: 91a4056a285b53f8c73494e8af88d9a98d6d61e0)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation: Updated title pages.
Scott Rifenbark [Thu, 29 Sep 2011 19:53:43 +0000 (12:53 -0700)] 
documentation: Updated title pages.

Updated the title pages for the ADT, BSP, Dev, and Ref manuals to
contain the Oct 6 release date for the books.  Also, changed the
author field for the BSP guide to include Tom Zanussi as well
as Richard Purdie.

(From yocto-docs rev: 301da0a5b305e4b332397bb67f6a6a77751991d2)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/poky-ref-manual/ref-variables.xml: updated KERNEL_FEATURES
Scott Rifenbark [Thu, 29 Sep 2011 18:52:27 +0000 (11:52 -0700)] 
documentation/poky-ref-manual/ref-variables.xml: updated KERNEL_FEATURES

(From yocto-docs rev: 37a9cea71139ceda1d2a7da639f5555414ef497b)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/kernel-manual: Added some references to other areas of YP docs.
Scott Rifenbark [Thu, 29 Sep 2011 18:05:07 +0000 (11:05 -0700)] 
documentation/kernel-manual: Added some references to other areas of YP docs.

(From yocto-docs rev: 20754cb376e65b7262b754afad839e0c2b82d7f7)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/kernel-manual: Scrub for 1.1
Scott Rifenbark [Thu, 29 Sep 2011 17:31:42 +0000 (10:31 -0700)] 
documentation/kernel-manual: Scrub for 1.1

I went through and made sure examples are relevant, wording is correct,
large blocks of unused text was removed, and some references included
to other YP documents.

(From yocto-docs rev: 2231082530dd9cecc234f5f024c4e246afb2968d)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/poky-ref-manual/ref-variables.xml: updates to KERNEL_FEATURES.
Scott Rifenbark [Thu, 29 Sep 2011 16:22:51 +0000 (09:22 -0700)] 
documentation/poky-ref-manual/ref-variables.xml: updates to KERNEL_FEATURES.

(From yocto-docs rev: ec1e2d71c576fe1c12031371de89a71770cebb1d)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/poky-ref-manual/ref-variables.xml: Added KERNEL_FEATURES
Scott Rifenbark [Thu, 29 Sep 2011 16:09:44 +0000 (09:09 -0700)] 
documentation/poky-ref-manual/ref-variables.xml: Added KERNEL_FEATURES

Added this variable description in the glossary.

(From yocto-docs rev: 12a9e5b4dfc399ff2037355aa1062f907a62e76d)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/poky-ref-manual/faq.xml: Removed wording that focues on GNOME
Scott Rifenbark [Wed, 28 Sep 2011 19:48:35 +0000 (12:48 -0700)] 
documentation/poky-ref-manual/faq.xml: Removed wording that focues on GNOME

Per Paul Eggleton he suggested that the wording we had about YP focusing
on the GNOME Mobile environment was misleading now.  It was in there in the
original version of the FAQ but with time has become outdated.  I simply
removed the "GNOME" part and left the part that mentions about YP
being a stable
environment and well-suited for the embedded mobile environment.

(From yocto-docs rev: cc7103eda3fd77d89cecfffa23f0f798aa512132)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/bsp-guide/bsp.xml: Added recipes-core section
Scott Rifenbark [Wed, 28 Sep 2011 19:36:33 +0000 (12:36 -0700)] 
documentation/bsp-guide/bsp.xml: Added recipes-core section

In the example I use for the BSP structure I use the Crown Bay
BSP.  I neglected to include any explanation of the recipes-core
directory.  I have added some description around this area.

(From yocto-docs rev: ba56c86e5a4aa3fbf23b12d26ffe35a3b6193a78)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 years agodocumentation/yocto-project-qs/yocto-project-qs.xml: Supported Distros updated
Scott Rifenbark [Wed, 28 Sep 2011 19:03:47 +0000 (12:03 -0700)] 
documentation/yocto-project-qs/yocto-project-qs.xml: Supported Distros updated

I updated the section on the supported distribution section by including
a link to the wiki page that shows what distros we have tested and
their status.

(From yocto-docs rev: e66a18a13dc02af6a0846dd1ecf14aeafcbe5d61)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>