]> code.ossystems Code Review - openembedded-core.git/log
openembedded-core.git
13 years agopackage-index.bb: add support for deb and rpm.
Dexuan Cui [Wed, 18 May 2011 04:09:01 +0000 (12:09 +0800)]
package-index.bb: add support for deb and rpm.

[YOCTO #1024]
Currently package-index.bb only supports ipk. This commit adds the support
for rpm and deb, too.

------------------------------
How to generate and use repos:

1) run "bitbake package-index" after building some target,
e.g., core-image-sato-sdk;

2) export ${DEPLOY_DIR_RPM}, ${DEPLOY_DIR_IPK} and ${DEPLOY_DIR_DEB} by a
webserver on the host, assuming the host IP is 192.168.7.1, at
http://192.168.7.1/rpm
http://192.168.7.1/ipk
http://192.168.7.1/deb

3) inside the target, according to the packaging system (rpm, ipk or deb) used
when we generate the target image, we can use different ways to manage
packages:

3.1) RPM
    run "zypper addrepo http://192.168.7.1/rpm main; zypper refresh"
    to retrieve info about the repo; next, we can use "zypper install/remove"
    to manage packages.

3.2) IPK
    add the repo info into opkg config file, i.e., in
    /etc/opkg/arch.conf, we can add something like
    "src i586 http://192.168.7.1/ipk/i586", and next, we run "opkg update" to
    make opkg update the list of available packages. And later, we can use
    "opkg install/remove" to manage packages.

3.3) DEB
    Currently in target, some important config files, like
/var/lib/dpkg/status and /etc/apt/sources.list, for deb/apt are missing. So
we can't install/remove package in target at present.

Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
13 years agogettext (gplv2): add virtual/gettext to PROVIDES list
Saul Wold [Thu, 19 May 2011 21:24:53 +0000 (14:24 -0700)]
gettext (gplv2): add virtual/gettext to PROVIDES list

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agou-boot: fix LIC_FILE_CHKSUM
Saul Wold [Fri, 20 May 2011 01:12:36 +0000 (18:12 -0700)]
u-boot: fix LIC_FILE_CHKSUM

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agodistro/defaultsetup.conf: Append TCLIBC to TMPDIR by default
Richard Purdie [Tue, 17 May 2011 10:48:29 +0000 (12:48 +0200)]
distro/defaultsetup.conf: Append TCLIBC to TMPDIR by default

The current solutions to share uclibc, eglibc and glibc builds in the
same tree all have various issues associated with them. Appending the
suffix to TMPDIR seems like the best solution since sstate (which
defaults to outside TMPDIR) will allow reuse of any components.

This avoids messy changes to the core with other approaches to this
problem inevitably entail, usually in code where this abstraction isn;'t
logically best placed.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agodefault-distrovars.inc: Do not add DISTRO_EXTRA_RDEPENDS and DISTRO_EXTRA_RRECOMMENDS
Khem Raj [Mon, 16 May 2011 06:04:17 +0000 (23:04 -0700)]
default-distrovars.inc: Do not add DISTRO_EXTRA_RDEPENDS and DISTRO_EXTRA_RRECOMMENDS

We otherwise get these added to image dependencies in distributions
and they may not want it but would like to use those variables

Signed-off-by: Khem Raj <raj.khem@gmail.com>
13 years ago*pull-request: add copyright, license, and descriptions
Darren Hart [Mon, 16 May 2011 22:18:20 +0000 (15:18 -0700)]
*pull-request: add copyright, license, and descriptions

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Otavio Salvador <otavio@ossystems.com.br>
13 years agosend-pull-request: streamline git-send-email usage
Darren Hart [Mon, 16 May 2011 20:34:28 +0000 (13:34 -0700)]
send-pull-request: streamline git-send-email usage

The script was sending one patch at a time, which defeats the internal
confirmation mechanism of git-send-email (which would otherwise allow
the user to send all patches or abort immediately).

Rework the sending logic to use no more than two commands. Use two
commands when the cover letter is to be sent to all recipients with
the -a argument. Otherwise, send all patches via the same command.

The script duplicates git's send confirmation, eliminate that.

Reported-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Joshua Lock <josh@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Khem Raj <raj.khem@gmail.com>
Cc: Joshua Lock <josh@linux.intel.com>
Cc: Otavio Salvador <otavio@ossystems.com.br>
13 years agocreate-pull-request: add untested oe repository support
Darren Hart [Sat, 14 May 2011 05:36:27 +0000 (22:36 -0700)]
create-pull-request: add untested oe repository support

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Otavio Salvador <otavio@ossystems.com.br>
13 years agocreate-pull-request: add GitHub remote support
Otavio Salvador [Sat, 14 May 2011 05:33:53 +0000 (22:33 -0700)]
create-pull-request: add GitHub remote support

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
13 years agocreate-pull-request: do not check certificate
Otavio Salvador [Sat, 14 May 2011 04:16:06 +0000 (04:16 +0000)]
create-pull-request: do not check certificate

Some remotes can use HTTPS and we don't need to check the certificate
of the host so wget call is changed to avoid it.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
13 years agosend-pull-request: verify git sendemail config
Darren Hart [Fri, 13 May 2011 22:42:37 +0000 (15:42 -0700)]
send-pull-request: verify git sendemail config

Perform a quick sanity check to be able to direct users to configure
git.sendemail if they haven't yet.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Otavio Salvador <otavio@ossystems.com.br>
13 years agosend-pull-request: don't send all patches to everyone even with -a
Darren Hart [Fri, 13 May 2011 20:58:36 +0000 (13:58 -0700)]
send-pull-request: don't send all patches to everyone even with -a

Rather than sending every patch to every recipient of the entire series when
-a is used, only send the cover letter to everyone and use git's
--signed-off-by-cc feature to generate an auto cc list for the individual
patches.

Add a -c option to use --signed-off-by-cc to auto cc recipeients at the
individual patch level. This is implied by -a.

Using git to harvest the Cc list means only collecting Signed-off-by and Cc
lines, rather than the more generic *-by lines previously. This is a fair
trade-off for significantly reduced complexity. If users want to add Acked-by
and Tested-by lines and want to use the -a feature, they should include those
recipients as Cc lines as well.

Now that we rely on git for auto-cc for the individual patches,
make sure the user is prompted before sending each patch by forcing
--confirm=always.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Khem Raj <raj.khem@gmail.com>
Cc: Koen Kooi <koen@dominion.thruhere.net>
Cc: Otavio Salvador <otavio@ossystems.com.br>
13 years agosend-pull-request: fix greedy auto-cc regex
Darren Hart [Fri, 13 May 2011 21:03:07 +0000 (14:03 -0700)]
send-pull-request: fix greedy auto-cc regex

A greedy regular expression caused emails to be harvested from patches
that were quoted in the commit message. Ensure only tags that start at the
beginning of the line are considered for harvesting.

NOTE: users are still responsible for verifying the recipients list and to
      ensure they do not spam people!

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
Cc: Saul Wold <sgw@linux.intel.com>
Cc: Bruce Ashfield <bruce.ashfield@windriver.com>
Cc: Otavio Salvador <otavio@ossystems.com.br>
13 years agosend-pull-request: remove local mta support
Darren Hart [Fri, 13 May 2011 20:33:57 +0000 (13:33 -0700)]
send-pull-request: remove local mta support

There is no real value in supporting sendmail directly when git
can be configured to use it. The script used to generate the
pull request mails relies heavily on git, so doing so here does
not impose any additional dependencies and it greatly reduces the
complexity of this script.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Otavio Salvador <otavio@ossystems.com.br>
13 years agosend-pull-request: whitespace cleanup
Darren Hart [Fri, 13 May 2011 17:36:03 +0000 (10:36 -0700)]
send-pull-request: whitespace cleanup

Indent with tabs, not spaces, for consistency with other bash scripts.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Otavio Salvador <otavio@ossystems.com.br>
13 years agocreate-pull-request: provide an RFC mode via -c argument
Darren Hart [Fri, 13 May 2011 20:10:14 +0000 (13:10 -0700)]
create-pull-request: provide an RFC mode via -c argument

Currently it is difficult to know if a pull request is being sent for review
or just to be pulled.

Add a -c argument to add RFC to the subject prefix and a blurb requesting
review to the cover letter.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Joshua Lock <josh@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
Cc: Saul Wold <sgw@linux.intel.com>
Cc: Paul Eggleton <paul.eggleton@intel.com>
Cc: Joshua Lock <josh@linux.intel.com>
Cc: Otavio Salvador <otavio@ossystems.com.br>
13 years agocreate-pull-request: rewrite known private URLs to public URLs
Darren Hart [Fri, 13 May 2011 19:21:57 +0000 (12:21 -0700)]
create-pull-request: rewrite known private URLs to public URLs

Rather than requiring users to have public remotes and private remotes when
their development remotes are ssh based (and therefor unsuitable for a pull
request URL), rewrite the ones we know about from ssh://git@ to git://.

As the remote url vary from remote to remote, do the REMOTE_REPO regex per
remote.

With this infrastructure in place, future patches can augment the list of
known remotes for things like Git Hub, Gitorious, kernel.org, etc.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Joshua Lock <josh@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Acked-by: Tom Rini <tom_rini@mentor.com>
Cc: Tom Rini <tom_rini@mentor.com>
Cc: Martin Jansa <martin.jansa@gmail.com>
Cc: Otavio Salvador <otavio@ossystems.com.br>
Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
Cc: Joshua Lock <josh@linux.intel.com>
13 years agocreate-pull-request: use git request-pull and arbitrary remotes
Darren Hart [Fri, 13 May 2011 17:44:49 +0000 (10:44 -0700)]
create-pull-request: use git request-pull and arbitrary remotes

Allow for arbitrary remotes via a new -u argument. Remove the hard coded
references to the pokylinux repositories. Create the WEB_URL from known
remotes. Future patches can add additional WEB_URL mappings for remotes
like Git Hub, Gitorious, and kernel.org.

Rather than duplicating the git request-pull command ourselves, just use
the existing one.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Joshua Lock <josh@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Acked-by: Tom Rini <tom_rini@mentor.com>
Cc: Tom Rini <tom_rini@mentor.com>
Cc: Martin Jansa <martin.jansa@gmail.com>
Cc: Otavio Salvador <otavio@ossystems.com.br>
Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
Cc: Joshua Lock <josh@linux.intel.com>
13 years agocreate-pull-request: whitespace cleanup
Darren Hart [Fri, 13 May 2011 17:33:39 +0000 (10:33 -0700)]
create-pull-request: whitespace cleanup

Indent with tabs, not spaces, to be consistent with other bash scripts.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Otavio Salvador <otavio@ossystems.com.br>
13 years agocreate-pull-request: alphabetize arguments
Darren Hart [Fri, 13 May 2011 16:30:53 +0000 (09:30 -0700)]
create-pull-request: alphabetize arguments

Some initial cleanup prior to a significant overhaul.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Otavio Salvador <otavio@ossystems.com.br>
13 years agoqt4-tools-native: Fix the patch location
Saul Wold [Wed, 18 May 2011 21:39:07 +0000 (14:39 -0700)]
qt4-tools-native: Fix the patch location

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agoutils.bbclass: modify create_wrapper to correctly follow symlinks
Saul Wold [Wed, 18 May 2011 04:43:42 +0000 (21:43 -0700)]
utils.bbclass: modify create_wrapper to correctly follow symlinks

This ensures you look up the symbolic link to get the full path

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agoAdd adt repo checking
Jessica Zhang [Wed, 18 May 2011 04:23:17 +0000 (21:23 -0700)]
Add adt repo checking

Signed-off-by: Jessica Zhang <jessica.zhang@intel.com>
13 years agoextract bitbake config setting into data_define, use more variables replacing hardcod...
Jessica Zhang [Wed, 18 May 2011 03:50:43 +0000 (20:50 -0700)]
extract bitbake config setting into data_define, use more variables replacing hardcoded values

Signed-off-by: Jessica Zhang <jessica.zhang@intel.com>
13 years agolsbsetup: Rename this file and add a link for lsb test
Xiaofeng Yan [Wed, 18 May 2011 11:12:01 +0000 (19:12 +0800)]
lsbsetup: Rename this file and add a link for lsb test

[YOCTO #1079]

Rename this file version from 0.9 to 1.0.
Link time environment for Hong Kong time for lsb test.

Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Added yocto bugid

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agolinux-yocto: fix gcc 4.6.0 compilation failures
Bruce Ashfield [Wed, 18 May 2011 16:07:44 +0000 (12:07 -0400)]
linux-yocto: fix gcc 4.6.0 compilation failures

Fixes bug: [YOCTO #1035]
Fixes bug: [YOCTO #1036]

Fixes gcc 4.6.0 compliation issues by importing the upstream change:

Author: Michal Marek <mmarek@suse.cz>
Date:   Mon May 2 12:13:01 2011 +0000

    kbuild: Fix passing -Wno-* options to gcc 4.4+

    Starting with 4.4, gcc will happily accept -Wno-<anything> in the
    cc-option test and complain later when compiling a file that has some
    other warning. This rather unexpected behavior is intentional as per
    http://gcc.gnu.org/PR28322, so work around it by testing for support of
    the opposite option (without the no-). Introduce a new Makefile function
    cc-disable-warning that does this and update two uses of cc-option in
    the toplevel Makefile.

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Tested-by: Stephen Rothwell <sfr@canb.auug.org.au>
Integrated-by: Bruce Ashfield <bruce.ashfield@windriver.com>
:100644 100644 0ef00bd... 1d8e7e9... M  Documentation/kbuild/makefiles.txt
:100644 100644 7bd863e0.. 74bac80... M  Makefile
:100644 100644 ed2773e... ba25c44... M  scripts/Kbuild.include

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
13 years agotcp-wrappers: fix libc overrides
Koen Kooi [Wed, 18 May 2011 13:44:49 +0000 (15:44 +0200)]
tcp-wrappers: fix libc overrides

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
13 years agosysstat: fix libc overrides
Koen Kooi [Wed, 18 May 2011 13:44:48 +0000 (15:44 +0200)]
sysstat: fix libc overrides

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
13 years agolsof: fix libc overrides
Koen Kooi [Wed, 18 May 2011 13:44:47 +0000 (15:44 +0200)]
lsof: fix libc overrides

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
13 years agofindutils: fix libc overrides
Koen Kooi [Wed, 18 May 2011 13:44:46 +0000 (15:44 +0200)]
findutils: fix libc overrides

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
13 years agodiffutils: fix libc overrides
Koen Kooi [Wed, 18 May 2011 13:44:45 +0000 (15:44 +0200)]
diffutils: fix libc overrides

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
13 years agomklibs-native: Update to 0.1.33
Saul Wold [Wed, 18 May 2011 19:13:11 +0000 (12:13 -0700)]
mklibs-native: Update to 0.1.33

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agousbutils: Update to 0.91
Saul Wold [Wed, 18 May 2011 21:37:13 +0000 (14:37 -0700)]
usbutils: Update to 0.91

Also move the upstream location to kernel.org

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agou-boot: update SRCREV to 2011.03
Darren Hart [Tue, 17 May 2011 18:30:03 +0000 (11:30 -0700)]
u-boot: update SRCREV to 2011.03

Fixes [YOCTO 1029]

u-boot 2010.12 fails to run on the Beagleboard C4 and xM Rev A boards.  Commit
55aacbc30e48f6f8a73fb989a58625e70887bc01 suggests there was a mixup during
development, as the MD5SUM change is from the 2011.03 SRCREV back to the
2010.12. Chances are a patch was never sent to update the SRCREV, leaving the
MD5SUM in a bad state.

Update the SRCREV and COPYING MD5SUM to use the 2011.03 version. Built
and tested on Beagleboard xM Rev A and Beagleboard Rev C4.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Tested-by: Jeff Osier-Mixon <jefro@jefro.net>
Cc: Jeff Osier-Mixon <jefro@jefro.net>
Cc: Yi Zhao <yi.zhao@windriver.com>
Cc: Robert Berger <pokylinux@reliableembeddedsystems.com>
Cc: Gary Thomas <gary@mlbassoc.com>
Merged Richard's removal of PR from PV

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agou-boot: Don't add PR in PV, its pointless
Richard Purdie [Thu, 19 May 2011 14:20:52 +0000 (15:20 +0100)]
u-boot: Don't add PR in PV, its pointless

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agoutils.bbclass: modify create_wrapper to correctly follow symlinks
Saul Wold [Wed, 18 May 2011 04:43:42 +0000 (21:43 -0700)]
utils.bbclass: modify create_wrapper to correctly follow symlinks

This ensures you look up the symbolic link to get the full path

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agoqt4: re-enable two 4.6.x patches in 4.7.3
Paul Eggleton [Tue, 17 May 2011 16:18:16 +0000 (17:18 +0100)]
qt4: re-enable two 4.6.x patches in 4.7.3

Two patches that were being applied in 4.6.x are now applied for 4.7.3.
The functions of these two patches are:

* Add support for 2bpp (only affects qt4-embedded)
* Use correct infix on QtUiTools library (only affects qt4-embedded as
  qt4-x11-free does not define an infix)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
13 years agoqt4: add comments and Upstream-Status to all patches
Paul Eggleton [Tue, 17 May 2011 14:51:01 +0000 (15:51 +0100)]
qt4: add comments and Upstream-Status to all patches

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
13 years agoqt4: remove Qt 4.6.3
Paul Eggleton [Tue, 17 May 2011 10:53:22 +0000 (11:53 +0100)]
qt4: remove Qt 4.6.3

We should only have one version of Qt4 supported in oe-core.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
13 years agogst-openmax: Add patch for GCC 4.6.0
Saul Wold [Wed, 18 May 2011 06:11:58 +0000 (23:11 -0700)]
gst-openmax: Add patch for GCC 4.6.0

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agoqemu: Fix Dependency and compatible machines
Saul Wold [Sun, 15 May 2011 01:44:36 +0000 (18:44 -0700)]
qemu: Fix Dependency and compatible machines

add DEFAULT_PREFERENCE = "-1" to disable git recipe
Added libx11 for GL support to DEPENDS
Use BROKEN to disable qemuarm and qemumips world build of qemu target

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agogcc: remove unused patches and move patches in proper dir
Nitin A Kamble [Tue, 17 May 2011 15:43:56 +0000 (08:43 -0700)]
gcc: remove unused patches and move patches in proper dir

gcc: update upstream-status for patches

python: update upstream-status for patches

libtool: update upstream-status of patches

m4: update upstream status for patches

eglibc: remove unused patches

eglibc: update upstream status of patches

glibc: update upstream-status of patches & remove unused patches

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
13 years agoCouple minor fixes for the OECORE rename
Jessica Zhang [Tue, 17 May 2011 21:34:39 +0000 (14:34 -0700)]
Couple minor fixes for the OECORE rename

Signed-off-by: Jessica Zhang <jessica.zhang@intel.com>
13 years agorecipes: add Upstream-Status to various recipe patches
Scott Garman [Tue, 17 May 2011 00:34:13 +0000 (17:34 -0700)]
recipes: add Upstream-Status to various recipe patches

Add Upstream-Status tag to patches for the following recipes:

apmd
insserv
linuxdoc-tools
openjade
sgmlspl
at
sudo

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
13 years agoAdd a skeleton for init scripts
Robert Yang [Tue, 17 May 2011 03:57:21 +0000 (21:57 -0600)]
Add a skeleton for init scripts

Add a skeleton for init scripts, the original structure is from
/etc/init.d/skeleton of Ubuntu 10.10, it is in sysvinit_2.87dsf, so add
the COPYRIGHT(GPLv2) of sysvinit_2.87dsf. Modified the original skeleton
a lot to make it as easy as possible, just use posix shell command, and
have tested it with core-image-minimal.

* The skeleton implements the following actions:
  - start, stop, restart, status, try-restart and force-reload.
    # force-reload is a alias of try-restart.

  - not implements reload, since only a few programs have it, just leave
    it as placeholder.

* Add /usr/sbin/skeleton-test to test /etc/init.d/skeleton

* The /etc/init.d/skeleton can be run and output the example messages:
  1) #./skeleton start (test start)
     Starting skeleton ...

  2) #./skeleton start (test start again when running)
     skeleton already running (1078).

  3) #./skeleton status (test status when running)
     skeleton is running (1078).

  4) #./skeleton stop (test stop)
     Stopped skeleton (1078).

  5) #./skeleton stop (test stop again)
     skeleton is not running; none killed.

  6) #./skeleton status (test status when stopped)
     skeleton is not running.

  7) #./skeleton restart (test restart when running)
     Stopped skeleton (1128).
     Starting skeleton ...

  8) #./skeleton restart (test restart when stopped)
     skeleton is not running; none killed.
     Starting skeleton ...

  9)  try-restart (or force-reload) means restart the service if the
      service is already running

     #./skeleton try-restart (test try-restart when stopped)
     skeleton is not running; none killed.

     #./skeleton try-restart (test try-restart when running)
      Stopped skeleton (1181).
      Starting skeleton ...

* Have used syslogd to test it in a real world(with both
  core-image-minimal and core-image-sato)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
13 years agoAdd pidofproc to ${sysconfdir}/init.d/functions
Robert Yang [Tue, 17 May 2011 15:35:57 +0000 (09:35 -0600)]
Add pidofproc to ${sysconfdir}/init.d/functions

Add pidofproc to ${sysconfdir}/init.d/functions, this is used for
getting the pid of the process. It uses pidof to implement currently, it
may also use the pidfile or ps to implement in the future.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
13 years agoCleanup the whitespace in functions
Robert Yang [Tue, 17 May 2011 01:29:25 +0000 (09:29 +0800)]
Cleanup the whitespace in functions

Cleanup the whitespace in functions, replace the 4 whitespaces
indent with tab.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
13 years agoAdd the layer meta-skeleton
Robert Yang [Wed, 11 May 2011 06:08:11 +0000 (14:08 +0800)]
Add the layer meta-skeleton

Add the layer meta-skeleton, it will be used to place the various
canonical examples.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
13 years agoworld-broken: remove non-existent items
Saul Wold [Sun, 15 May 2011 04:23:37 +0000 (21:23 -0700)]
world-broken: remove non-existent items

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agotask-core-clutter: Update to 1.6
Saul Wold [Sun, 15 May 2011 04:23:06 +0000 (21:23 -0700)]
task-core-clutter: Update to 1.6

Removed clutter-gtk and box2d

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agoclutter: Clean up old recipes
Saul Wold [Sat, 14 May 2011 02:22:10 +0000 (19:22 -0700)]
clutter: Clean up old recipes

clutter-1.4 is moved to meta-extras
clutter-box2d is migrated to latest 1.6 version

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agogcc: Move 4.3.3 and Special kernel 3.4.4 to meta-extras
Saul Wold [Sat, 14 May 2011 02:22:50 +0000 (19:22 -0700)]
gcc: Move 4.3.3 and Special kernel 3.4.4 to meta-extras

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agoyaffs2: Remove yaffs2 from oe-core
Saul Wold [Sat, 14 May 2011 00:43:12 +0000 (17:43 -0700)]
yaffs2: Remove yaffs2 from oe-core

Move to meta-extras
Also remove yaffs2 from image_types.bbclass

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agogtk+: Ensure that the default dependencies are ones that exist in OE-Core
Richard Purdie [Wed, 18 May 2011 11:34:30 +0000 (12:34 +0100)]
gtk+: Ensure that the default dependencies are ones that exist in OE-Core

Also use the glibc override instead of target overrides and remove
distro overrides creating variables that can be overridden instead.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agosanity.bbclass: Disable the is DISTRO set check since we can now run distro-less
Richard Purdie [Wed, 18 May 2011 11:34:07 +0000 (12:34 +0100)]
sanity.bbclass: Disable the is DISTRO set check since we can now run distro-less

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agoscripts/oe-buildenv-internal: Improve message when bitbake is missing
Richard Purdie [Wed, 18 May 2011 11:33:27 +0000 (12:33 +0100)]
scripts/oe-buildenv-internal: Improve message when bitbake is missing

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agoupdate-rc.d: fix after repo move
Koen Kooi [Tue, 17 May 2011 18:36:54 +0000 (20:36 +0200)]
update-rc.d: fix after repo move

The git repo layout is different from the cvs repo layout

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
13 years agorecipes: Add upstream status information for patches
Dongxiao Xu [Tue, 17 May 2011 08:15:15 +0000 (16:15 +0800)]
recipes: Add upstream status information for patches

gypsy: Add upstream status information for gypsy's patch
alsa-utils: fix upstream status typo
pulseaudio: add upstream status for pulseaudio-0.9.15's patches
hostap: add upstream status for hostap's patch
glibc: add upstream status for glibc's patch
glib-2.0: add upstream status for glib-2.0's patch
mtd-utils: add upstream status for mtd-utils patches
add upstream status for opkg's patches
mark add_vercmp.patch as inappropriate since the added function is not
used.

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
13 years agoimage-prelink: remove hardcoded path assumptions, don't generate cache file
Phil Blundell [Tue, 17 May 2011 15:52:59 +0000 (16:52 +0100)]
image-prelink: remove hardcoded path assumptions, don't generate cache file

Pass -N option to prelink so that no cache file is generated (obviates need for deleting it afterwards).
Use symbolic names, ${sysconfdir} et al., rather than hardcoded paths.
Pass explicit -c option to prelink in case ${sysconfdir} and ${sysconfdir_native} are different.

Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agotask-core-lsb: Add libQtOpenGL.so* library to lsb-image
Xiaofeng Yan [Tue, 17 May 2011 05:49:29 +0000 (13:49 +0800)]
task-core-lsb: Add libQtOpenGL.so* library to lsb-image

The library libQtOpenGL.so* is needed by LSB Test Suite.
So I add them to lsb-image for platform emenlow and mpc8315e.

Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
13 years agolsbsetup: Add a link for lsb test
Xiaofeng Yan [Tue, 17 May 2011 05:46:14 +0000 (13:46 +0800)]
lsbsetup: Add a link for lsb test

Link /usr/lib/sendmail to /usr/sbin/sendmail

Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
13 years agolsb: Install init-functions to rpm package
Xiaofeng Yan [Tue, 17 May 2011 05:40:07 +0000 (13:40 +0800)]
lsb: Install init-functions to rpm package

The script init-functions can't be built into rpm package of lsb.
I modify lsb_1.4.bb to add this script to rpm package of lsb.

Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
13 years agobitbake.conf: set TARGET_VENDOR to '-oe' and remove it from defaultsetup.conf
Martin Jansa [Fri, 13 May 2011 12:45:38 +0000 (14:45 +0200)]
bitbake.conf: set TARGET_VENDOR to '-oe' and remove it from defaultsetup.conf

* -oecore was changed to -oe to be more consistent with SDK_VENDOR as we had -oesdk as SDK_VENDOR and not -oecoresdk

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
13 years agobackport USE_LDCONFIG and PACKAGE_SNAP_LIB_SYMLINKS from oe master
Phil Blundell [Tue, 17 May 2011 09:56:35 +0000 (10:56 +0100)]
backport USE_LDCONFIG and PACKAGE_SNAP_LIB_SYMLINKS from oe master

This is a backport of the corresponding package.bbclass functionality
(which is needed by micro) from the openembedded tree.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agoupdate patch upstream status
Qing He [Tue, 17 May 2011 02:23:48 +0000 (10:23 +0800)]
update patch upstream status

for the following recipes:
  pcmciautils openssl udev apt gdm

Signed-off-by: Qing He <qing.he@intel.com>
13 years agoguilt-native: eliminate hardcoded "/usr" in do_install
Phil Blundell [Tue, 17 May 2011 10:34:14 +0000 (11:34 +0100)]
guilt-native: eliminate hardcoded "/usr" in do_install

For some reason guilt-native seems to have gone out of its way to refer explicitly to /usr, which breaks on micro.
Let's use ${prefix} instead.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agoUpstream-Status: Update patch upstream-status for GPLv2 recipes
Zhai Edwin [Tue, 17 May 2011 13:26:36 +0000 (21:26 +0800)]
Upstream-Status: Update patch upstream-status for GPLv2 recipes

Including gzip and mtoools

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agoeglibc: backport fix from oe master to stop libc.so leaking into ${PN}
Phil Blundell [Tue, 17 May 2011 13:20:31 +0000 (14:20 +0100)]
eglibc: backport fix from oe master to stop libc.so leaking into ${PN}

Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agotask-core-nfs/image.bbclass: Fix some libc overrides
Richard Purdie [Tue, 17 May 2011 13:52:27 +0000 (14:52 +0100)]
task-core-nfs/image.bbclass: Fix some libc overrides

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agoimage.bbclass: use soft assignment for LDCONFIGDEPEND
Phil Blundell [Tue, 17 May 2011 12:31:27 +0000 (13:31 +0100)]
image.bbclass: use soft assignment for LDCONFIGDEPEND

This allows distros that don't want ldconfig to turn it off.

Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agoopenssl: backport fix for empty prefix from oe master
Phil Blundell [Tue, 17 May 2011 12:35:37 +0000 (13:35 +0100)]
openssl: backport fix for empty prefix from oe master

This fixes a build failure when ${prefix}="".

Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agoupdate-rc.d: point SRC_URI to new devel repo
Phil Blundell [Tue, 17 May 2011 12:28:07 +0000 (13:28 +0100)]
update-rc.d: point SRC_URI to new devel repo

handhelds.org cvs is down and doesn't seem to be coming back.
update-rc.d now has a new upstream home, point SRC_URI to that.

Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agolicense bbclass: put licenses in DEPLOY_DIR/licenses to avoid sstate problems when...
Koen Kooi [Tue, 17 May 2011 09:47:53 +0000 (11:47 +0200)]
license bbclass: put licenses in DEPLOY_DIR/licenses to avoid sstate problems when MACHINE is part of DEPLOY_DIR_IMAGE

See http://lists.linuxtogo.org/pipermail/openembedded-core/2011-May/002535.html for more info.

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agolinux-yocto: update meta SRCREV
Bruce Ashfield [Mon, 16 May 2011 19:29:48 +0000 (15:29 -0400)]
linux-yocto: update meta SRCREV

Updating the meta branch to pickup two recent commits for
BSP support:

[
    commit 79669230fd82a3e7e254cf8b596a2388a4333e62
    Author: Tom Zanussi <tom.zanussi@intel.com>
    Date:   Fri Apr 22 15:55:12 2011 -0500

        bsp/crownbay: merge emgd branch

        Add scc commands to merge the yocto/emgd branch into the crownbay BSP.

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
    :100644 100644 89a0725... 0d02b98... M  meta/cfg/kernel-cache/bsp/crownbay/crownbay.scc

    commit ceb1744ec55408cb637929a3f154379e42642890
    Author: Tom Zanussi <tom.zanussi@intel.com>
    Date:   Mon Apr 25 18:15:14 2011 -0500

        meta/romley: create initial BSP infrastructure

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
    :000000 100644 0000000... 54ec614... A  meta/cfg/kernel-cache/bsp/romley/romley-standard.scc
    :000000 100644 0000000... 61e5506... A  meta/cfg/kernel-cache/bsp/romley/romley.cfg
    :000000 100644 0000000... 1c4a657... A  meta/cfg/kernel-cache/bsp/romley/romley.scc

    commit ecab1e2bc12a8b0c4d064a00acc3260f6e8528c5
]

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
13 years agoperl-native: create_wrapper on perl${PV} too
Tom Rini [Mon, 16 May 2011 20:14:12 +0000 (13:14 -0700)]
perl-native: create_wrapper on perl${PV} too

perl${PV} becomes hostperl when building for the target so we need a wrapper
on that too.

This is 1e255fbd296e95ff178d66c4a1fe4875a988d7e1 in OE.

Signed-off-by: Tom Rini <tom_rini@mentor.com>
13 years agoopenssh: Don't use ${libdir}exec
Tom Rini [Mon, 16 May 2011 20:13:01 +0000 (13:13 -0700)]
openssh: Don't use ${libdir}exec

This is 1259e0289ce53198cc6c57a9616c8a1623be502a in OE.

[RP: Added PR bump]
Signed-off-by: Tom Rini <tom_rini@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agobase.bbclass: Fix PR increment bug when PR number is a single digit
Khem Raj [Mon, 16 May 2011 18:18:38 +0000 (11:18 -0700)]
base.bbclass: Fix PR increment bug when PR number is a single digit

PRINC which should add to base PR value has a problem when
the PR is single digit e.g. r0 - r9. Current algorithm
needed atleasts 2 digits to successfully populate end and begin
markers.

We reimplement the incrementing algorithm using regular expressions
which addressed the above mentioned problem and
simplifies the logic a bit and gets rid of loops and conditionals

Signed-off-by: Khem Raj <raj.khem@gmail.com>
13 years agoAdd a new task checklicense and fix some bugs in distro_check.py
Mei Lei [Mon, 16 May 2011 11:06:21 +0000 (19:06 +0800)]
Add a new task checklicense and fix some bugs in distro_check.py

distro_check.py: Create a new function called create_log_file to reduce a lot of repeat code in distrodata.bbclass.
                 We needn't to create log file in function save_distro_check_result, because the log file has been generated in check_eventhandler.
                 Another bug is that we maybe access the /tmp/Meego-1.0 before we create this file.
                 Add a judge statement to decide whether we need to create this file firstly.
distrodata.bbclass: Add a new task checklicense to collect missing text license information.
                    This can help package-report system to know how many recipes are missing license text.

Signed-off-by: Mei Lei <lei.mei@intel.com>
13 years agolinux-yocto: detect and avoid branch revision checking for AUTOREV
Bruce Ashfield [Mon, 16 May 2011 15:42:28 +0000 (11:42 -0400)]
linux-yocto: detect and avoid branch revision checking for AUTOREV

When a BSP or layer specifies an AUTOREV for SRCREV, the logic
that matches expected vs real branch heads doesn't apply. We
always want the latest.

To solve the issues with invalid git revs causing validation
failures, we detect the AUTOINC value and do a early return,
skipping validation.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
13 years agoUpstream-Status: Update patch upstream-status for libfm, eggdbus, screenshot...
Zhai Edwin [Mon, 16 May 2011 13:12:57 +0000 (21:12 +0800)]
Upstream-Status: Update patch upstream-status for libfm, eggdbus, screenshot...

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
13 years agoUpstream-Status update for several recipes
Yu Ke [Mon, 16 May 2011 06:04:12 +0000 (14:04 +0800)]
Upstream-Status update for several recipes

 - modutils
 - module-init-tools
 - libacpi
 - keymaps
 - initscripts
 - console-tools
 - mesa-demos
 - xserver-xf86-lite

Signed-off-by: Yu Ke <ke.yu@intel.com>
13 years agorecipes: Add Upstream-Status to various recipe patches
Scott Garman [Mon, 16 May 2011 03:04:27 +0000 (20:04 -0700)]
recipes: Add Upstream-Status to various recipe patches

Add Upstream-Status tag to patches for the following recipes:

openssh
dbus-glib
expat
opensp
sgml-common
at
cpio (GPLv3 version)
libpam
icu

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
13 years agomutter: Recipe Update for clutter 1.6 update
Saul Wold [Sun, 15 May 2011 04:24:07 +0000 (21:24 -0700)]
mutter: Recipe Update for clutter 1.6 update

set DEFAULT_PREFERENCE to -1 for git recipe
Update from clutter-1.4 to clutter-1.6
add fix_CGL_TEXTURE_RECTANGLE_ARB.patch

Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agoe2fsprogs_1.41.14.bb: Package libraries into separate packages
Khem Raj [Sun, 15 May 2011 06:44:34 +0000 (23:44 -0700)]
e2fsprogs_1.41.14.bb: Package libraries into separate packages

add libcomerr libss libe2p libext2fs packages
helps in reducing the root file system size

[RP: Added PR bump]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
13 years agoopkg: Bump SRCREV to 609
Khem Raj [Sun, 15 May 2011 06:47:04 +0000 (23:47 -0700)]
opkg: Bump SRCREV to 609

Disable curl gpg ssl sha
Backported from OE

Signed-off-by: Khem Raj <raj.khem@gmail.com>
13 years agotask-core-nfs: fix a bitbake error
Nitin A Kamble [Fri, 13 May 2011 17:27:50 +0000 (10:27 -0700)]
task-core-nfs: fix a bitbake error

THis fixes following issue:

NOTE: Runtime target 'glibc-utilsglibc-utils' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['glibc-utilsglibc-utils']
NOTE: Runtime target 'task-core-nfs-server' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['task-core-nfs-server', 'glibc-utilsglibc-utils']

[sgw: moved space to _append line]
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
13 years agocmake: add support for oe qt4 tools names
Otavio Salvador [Thu, 12 May 2011 15:36:03 +0000 (15:36 +0000)]
cmake: add support for oe qt4 tools names

The FindQt4 module looks for Qt4 binaries to be able to gather the
paths used for compilation and also to be using during other processes
(translation update, translation binary generating and like) however
OpenEmbedded has renamed those to allow old QMake to be used in
parallel with the current one. This patch adds support for the
OpenEmbedded specific binary names.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
13 years agoscripts/oe-setup-builddir: Add missing .sample extensions and default to meta/conf...
Richard Purdie [Mon, 16 May 2011 14:59:27 +0000 (15:59 +0100)]
scripts/oe-setup-builddir: Add missing .sample extensions and default to meta/conf for sample files

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 years agofoomatic-filters: add a link to pass LSB printing test
Kang Kai [Fri, 13 May 2011 02:06:44 +0000 (10:06 +0800)]
foomatic-filters: add a link to pass LSB printing test

LSB printing test will test a foomatic-rip under cups' directory,
so add it as link when DISTRO is set to linuxstdbase.
Part fixes [Yocto 904]

Signed-off-by: Kang Kai <kai.kang@windriver.com>
13 years agoutil-linux: inherit pkgconfig
Khem Raj [Fri, 13 May 2011 18:41:56 +0000 (11:41 -0700)]
util-linux: inherit pkgconfig

Configure of util-linux used pkg-config to poke for gtk-doc versions
so we need this dependency on pkgconfig

Signed-off-by: Khem Raj <raj.khem@gmail.com>
13 years agoconf/bitbake.conf: Add MACHINEOVERRIDES variable
Khem Raj [Fri, 13 May 2011 18:39:04 +0000 (11:39 -0700)]
conf/bitbake.conf: Add MACHINEOVERRIDES variable

By defualt it points to $MACHINE but sometimes its desired
to have more than one overrides stemming out of a machine
then they can be added to MACHINEOVERRIDES.

e.g. MACHINEOVERRIDES = "${MACHINE}:nslu2"

Note that if you redefine MACHINEOVERRIDES then default
override for machine has to be added to it explicitly
otherwise it will get lost.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
13 years agoglib-2.0: use PN instead of glib-2.0 in PACKAGES and FILES
Martin Jansa [Thu, 12 May 2011 09:09:39 +0000 (11:09 +0200)]
glib-2.0: use PN instead of glib-2.0 in PACKAGES and FILES

* otherwise notes like this are shown:
  NOTE: multiple providers are available for runtime glib-2.0-utils (glib-2.0-nativesdk, glib-2.0)
  NOTE: consider defining a PREFERRED_PROVIDER entry to match glib-2.0-utils

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
13 years agolib/oe/process.py: import from OE
Martin Jansa [Mon, 4 Apr 2011 07:44:36 +0000 (09:44 +0200)]
lib/oe/process.py: import from OE

13 years agoqt4: split out SQL driver config flags to QT_SQL_DRIVER_FLAGS
Paul Eggleton [Fri, 13 May 2011 13:28:13 +0000 (14:28 +0100)]
qt4: split out SQL driver config flags to QT_SQL_DRIVER_FLAGS

This allows meta-oe to override these options easily in order to enable more
SQL driver plugins.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
13 years agodistro_tracking_fields.inc: update for qt 4.7.3 upgrade
Paul Eggleton [Fri, 13 May 2011 09:17:16 +0000 (10:17 +0100)]
distro_tracking_fields.inc: update for qt 4.7.3 upgrade

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
13 years agoqt4: update from 4.7.2 to 4.7.3
Paul Eggleton [Thu, 12 May 2011 14:11:16 +0000 (15:11 +0100)]
qt4: update from 4.7.2 to 4.7.3

The Comodo certificates patch has been merged upstream so it no longer
needs to be applied. Some PR values were reset and SRC_URI checksums
updated but other than this there are no recipe changes.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
13 years agolsbsetup: recreate locale fr_FR
Kang Kai [Fri, 13 May 2011 03:18:40 +0000 (11:18 +0800)]
lsbsetup: recreate locale fr_FR

Update LSB_Setup.sh to recreate locale fr_FR, which helps to pass
LSB libstdc++ test.
Bump PR to r3.

Signed-off-by: Kang Kai <kai.kang@windriver.com>
13 years agotask-core-lsb: add packages into lsb image
Kang Kai [Thu, 5 May 2011 07:58:14 +0000 (15:58 +0800)]
task-core-lsb: add packages into lsb image

Add gettext-runtime, libxml-sax-perl and foomatic-filters to
task-core-image.bb
Bump PR to r4

Signed-off-by: Kang Kai <kai.kang@windriver.com>
13 years agolibxml-sax-perl: added to create LSB olver test report
Kang Kai [Fri, 6 May 2011 02:17:59 +0000 (10:17 +0800)]
libxml-sax-perl: added to create LSB olver test report

libxml-sax-perl is need to create LSB olver test report,
so import it and its dependecy libxml-namespacesupport-perl from oe.
Add LICENSE and reset PR.

Signed-off-by: Kang Kai <kai.kang@windriver.com>
13 years agotcmode-default: fix a typo
Nitin A Kamble [Fri, 13 May 2011 00:15:48 +0000 (17:15 -0700)]
tcmode-default: fix a typo

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>