All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3 v4][PULL] Hob: oe-core related changes
@ 2012-01-13 11:38 Dongxiao Xu
  2012-01-13 11:38 ` [PATCH 1/3] package.bbclass: set package size into pkgdata for hob2's use Dongxiao Xu
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Dongxiao Xu @ 2012-01-13 11:38 UTC (permalink / raw)
  To: openembedded-core

Hi Richard,

This is the fourth pull request for Hob oe-core related changes.
There are some mistakes happen in the dxu4/hob-bitbake-changes-v3,
so please ignore that one and use this v4.

After some discussion, we found meta-hob should go to oe-core.

Please help to review and pull.

Note that this pull request has dependency on branch dxu4/hob-bitbake-changes-v3.

Changes from v2:
1. Remove the 'layers' from poky repo. We will have some indications in Hob GUI showing where to put new added layers.
2. Move dummy-image.bb and dummy-toolchain.bb to meta-hob layer.
3. Listen the specific event 'RequestPackageInfo' and then pass package information to GUI client.

Thanks,
Dongxiao


The following changes since commit 1d2697e6f00cc3771f39f5a7d4384a22d9696b16:
  Richard Purdie (1):
        multilib.conf: Clean up file and add missing entries for various dependencies

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib dxu4/hob-oecore-changes-v4
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dxu4/hob-oecore-changes-v4

Dongxiao Xu (2):
  packageinfo.bbclass: add a new bbclass to pass package information
  meta-hob: Add a new meta-hob layer

Shane Wang (1):
  package.bbclass: set package size into pkgdata for hob2's use

 meta-hob/COPYING.MIT                          |   17 ++++++++++++++
 meta-hob/conf/layer.conf                      |    9 +++++++
 meta-hob/recipes-core/images/dummy-image.bb   |    1 +
 meta-hob/recipes-core/meta/dummy-toolchain.bb |   10 ++++++++
 meta/classes/package.bbclass                  |    8 ++++++
 meta/classes/packageinfo.bbclass              |   30 +++++++++++++++++++++++++
 6 files changed, 75 insertions(+), 0 deletions(-)
 create mode 100644 meta-hob/COPYING.MIT
 create mode 100644 meta-hob/conf/layer.conf
 create mode 100644 meta-hob/recipes-core/images/dummy-image.bb
 create mode 100644 meta-hob/recipes-core/meta/dummy-toolchain.bb
 create mode 100644 meta/classes/packageinfo.bbclass




^ permalink raw reply	[flat|nested] 8+ messages in thread
* [PATCH 0/3][PULL] Hob2: OE-Core related changes
@ 2012-02-23 13:48 Dongxiao Xu
  2012-02-23 13:48 ` [PATCH 2/3] packageinfo.bbclass: add a new bbclass to pass package information Dongxiao Xu
  0 siblings, 1 reply; 8+ messages in thread
From: Dongxiao Xu @ 2012-02-23 13:48 UTC (permalink / raw)
  To: openembedded-core

Hi Richard,

This is the hob2 related OE-Core changes. Please help to review and pull.

Compared with previous version:
 - packageinfo.bbclass: Fix the way to construct ipk/deb package names.
 - meta-hob: rename dummy-image and dummy-toolchain to hob-image and hob-toolchain

Note that this pull request depends on the following pull requests:
 - hob2-bitbake-changes

Thanks,
Dongxiao

The following changes since commit 55f72b98f606c1554eb6edd151292ffdfddf1384:

  texi2html: Fix for multilib (2012-02-22 23:01:45 +0000)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib dxu4/hob2-oecore-changes
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dxu4/hob2-oecore-changes

Dongxiao Xu (2):
  packageinfo.bbclass: add a new bbclass to pass package information
  meta-hob: Add a new meta-hob layer

Shane Wang (1):
  package.bbclass: set package size into pkgdata for hob2's use

 meta-hob/COPYING.MIT                        |   17 +++++++++++++
 meta-hob/conf/layer.conf                    |    9 +++++++
 meta-hob/recipes-core/images/hob-image.bb   |    1 +
 meta-hob/recipes-core/meta/hob-toolchain.bb |   10 +++++++
 meta/classes/package.bbclass                |    8 ++++++
 meta/classes/packageinfo.bbclass            |   35 +++++++++++++++++++++++++++
 6 files changed, 80 insertions(+), 0 deletions(-)
 create mode 100644 meta-hob/COPYING.MIT
 create mode 100644 meta-hob/conf/layer.conf
 create mode 100644 meta-hob/recipes-core/images/hob-image.bb
 create mode 100644 meta-hob/recipes-core/meta/hob-toolchain.bb
 create mode 100644 meta/classes/packageinfo.bbclass

-- 
1.7.4.1




^ permalink raw reply	[flat|nested] 8+ messages in thread
* [PATCH 0/3 v3][PULL] Hob: oe-core related changes
@ 2012-01-13  8:31 Dongxiao Xu
  2012-01-13  8:31 ` [PATCH 2/3] packageinfo.bbclass: add a new bbclass to pass package information Dongxiao Xu
  0 siblings, 1 reply; 8+ messages in thread
From: Dongxiao Xu @ 2012-01-13  8:31 UTC (permalink / raw)
  To: openembedded-core

Hi Richard,

This is the third pull request for Hob oe-core related changes.

Please help to review and pull.

Note that this pull request has dependency on branch dxu4/hob-bitbake-changes-v3.

Changes from v2:
1. Remove the 'layers' from poky repo. We will have some indications in Hob GUI showing where to put new added layers.
2. Move dummy-image.bb and dummy-toolchain.bb to meta-hob layer.
3. Listen the specific event 'RequestPackageInfo' and then pass package information to GUI client.

Thanks,
Dongxiao

The following changes since commit 1d2697e6f00cc3771f39f5a7d4384a22d9696b16:
  Richard Purdie (1):
        multilib.conf: Clean up file and add missing entries for various dependencies

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib dxu4/hob-oecore-changes-v3
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dxu4/hob-oecore-changes-v3

Dongxiao Xu (2):
  packageinfo.bbclass: add a new bbclass to pass package information
  meta-hob: Add a new meta-hob layer

Shane Wang (1):
  package.bbclass: set package size into pkgdata for hob2's use

 meta-hob/COPYING.MIT                          |   17 ++++++++++++++
 meta-hob/conf/layer.conf                      |    9 +++++++
 meta-hob/recipes-core/images/dummy-image.bb   |    1 +
 meta-hob/recipes-core/meta/dummy-toolchain.bb |   10 ++++++++
 meta/classes/package.bbclass                  |    8 ++++++
 meta/classes/packageinfo.bbclass              |   30 +++++++++++++++++++++++++
 6 files changed, 75 insertions(+), 0 deletions(-)
 create mode 100644 meta-hob/COPYING.MIT
 create mode 100644 meta-hob/conf/layer.conf
 create mode 100644 meta-hob/recipes-core/images/dummy-image.bb
 create mode 100644 meta-hob/recipes-core/meta/dummy-toolchain.bb
 create mode 100644 meta/classes/packageinfo.bbclass




^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2012-02-23 13:57 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-13 11:38 [PATCH 0/3 v4][PULL] Hob: oe-core related changes Dongxiao Xu
2012-01-13 11:38 ` [PATCH 1/3] package.bbclass: set package size into pkgdata for hob2's use Dongxiao Xu
2012-01-13 11:38 ` [PATCH 2/3] packageinfo.bbclass: add a new bbclass to pass package information Dongxiao Xu
2012-01-13 12:05   ` Koen Kooi
2012-01-13 15:11     ` Richard Purdie
2012-01-13 11:38 ` [PATCH 3/3] meta-hob: Add a new meta-hob layer Dongxiao Xu
  -- strict thread matches above, loose matches on Subject: below --
2012-02-23 13:48 [PATCH 0/3][PULL] Hob2: OE-Core related changes Dongxiao Xu
2012-02-23 13:48 ` [PATCH 2/3] packageinfo.bbclass: add a new bbclass to pass package information Dongxiao Xu
2012-01-13  8:31 [PATCH 0/3 v3][PULL] Hob: oe-core related changes Dongxiao Xu
2012-01-13  8:31 ` [PATCH 2/3] packageinfo.bbclass: add a new bbclass to pass package information Dongxiao Xu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.