All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4][Image Creator]Add mulitple extra cache fields request support
@ 2011-05-26  2:53 ` Ke Liping
  0 siblings, 0 replies; 16+ messages in thread
From: Ke Liping @ 2011-05-26  2:51 UTC (permalink / raw)
  To: yocto

From: Liping Ke <liping.ke@intel.com>

The series of patch are for mplementing multiple extra cache fields
request support.If user needs to request extra cache fields besides
CoreRecipeInfo fields, just add a new XXXRecipeInfo class definition
as Image Creator UI Hob Does.
For implementing this new feature, we refactory current cache code,
remove namedtuple and define corresponding class for dynamical cache
fields support per different cache usage request.

Liping Ke (4):
  Refactory Current Cache implementation
  Introduce extra cache class for image creator
  Introduce new param caches_array into Cache impl.
  Implement multiple extra cache fields request support

 bitbake/lib/bb/cache.py       |  532 ++++++++++++++++++++++-------------------
 bitbake/lib/bb/cache_extra.py |   54 ++++
 bitbake/lib/bb/cooker.py      |   70 ++++--
 bitbake/lib/bb/shell.py       |    2 +-
 bitbake/lib/bb/ui/hob.py      |    2 +
 5 files changed, 396 insertions(+), 264 deletions(-)
 create mode 100644 bitbake/lib/bb/cache_extra.py



^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PATCH 0/4][Image Creator]Add mulitple extra cache fields request support
@ 2011-05-31  8:15 Ke Liping
  0 siblings, 0 replies; 16+ messages in thread
From: Ke Liping @ 2011-05-31  8:15 UTC (permalink / raw)
  To: poky

From: Liping Ke <liping.ke@intel.com>

The series of patch are for mplementing multiple extra cache fields
request support.If user needs to request extra cache fields besides
CoreRecipeInfo fields, just add a new XXXRecipeInfo class definition
as Image Creator UI Hob Does.
For implementing this new feature, we refactory current cache code,
remove namedtuple and define corresponding class for dynamical cache
fields support per different cache usage request.

The following changes since commit 949c3521abb7fe9fc8f367ec4ce6b8a4ed8a1267:
  Bruce Ashfield (1):
        linux-yocto: update meta SRCREV

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib lke/cache
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=lke/cache

Liping Ke (4):
  Refactory Current Cache implementation
  Introduce extra cache class for image creator
  Introduce new param caches_array into Cache impl.
  Implement multiple extra cache fields request support

 bitbake/lib/bb/cache.py       |  532 ++++++++++++++++++++++-------------------
 bitbake/lib/bb/cache_extra.py |   54 ++++
 bitbake/lib/bb/cooker.py      |   68 ++++--
 bitbake/lib/bb/shell.py       |    2 +-
 bitbake/lib/bb/ui/hob.py      |    2 +
 5 files changed, 394 insertions(+), 264 deletions(-)
 create mode 100644 bitbake/lib/bb/cache_extra.py



^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PATCH 0/4][Image Creator]Add mulitple extra cache fields request support
@ 2011-06-03  1:06 Ke Liping
  2011-06-07 21:47 ` Richard Purdie
  0 siblings, 1 reply; 16+ messages in thread
From: Ke Liping @ 2011-06-03  1:06 UTC (permalink / raw)
  To: poky, bitbake-devel

From: Liping Ke <liping.ke@intel.com>

Those patches are for poky tree. Since bitbake code base is syncing,
I cc those changes to bitbake mail list too. Thanks!

The series of patch are for mplementing multiple extra cache fields
request support.If user needs to request extra cache fields besides
CoreRecipeInfo fields, just add a new XXXRecipeInfo class definition
as Image Creator UI Hob Does.
For implementing this new feature, we refactory current cache code,
remove namedtuple and define corresponding class for dynamical cache
fields support per different cache usage request.


The following changes since commit 6b5d323b6c8960a0999dbafa0422fe127fd0fa97:
  Chris Larson (1):
        event: don't catch systemexit from handler execution

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib lke/cache
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=lke/cache

Liping Ke (4):
  Refactory Current Cache implementation
  Introduce extra cache class for image creator
  Introduce new param caches_array into Cache impl.
  Implement multiple extra cache fields request support

 bitbake/lib/bb/cache.py       |  536 ++++++++++++++++++++++-------------------
 bitbake/lib/bb/cache_extra.py |   54 ++++
 bitbake/lib/bb/cooker.py      |   68 ++++--
 bitbake/lib/bb/shell.py       |    2 +-
 bitbake/lib/bb/ui/hob.py      |    2 +
 5 files changed, 396 insertions(+), 266 deletions(-)
 create mode 100644 bitbake/lib/bb/cache_extra.py




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

end of thread, other threads:[~2011-06-07 21:50 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-26  2:51 [PATCH 0/4][Image Creator]Add mulitple extra cache fields request support Ke Liping
2011-05-26  2:53 ` Ke Liping
2011-05-26  2:52 ` [PATCH 1/4][Image Creator]Refactory Current Cache implementation Ke Liping
2011-05-26  2:53   ` Ke Liping
2011-05-26  2:52 ` [PATCH 2/4][Image Creator]Introduce extra cache class for image creator Ke Liping
2011-05-26  2:53   ` Ke Liping
2011-05-26  2:52 ` [PATCH 3/4][Image Creator]Introduce new param caches_array into Cache impl Ke Liping
2011-05-26  2:53   ` Ke Liping
2011-05-26 10:27   ` Richard Purdie
2011-05-31  8:11     ` Ke, Liping
2011-05-26  2:52 ` [PATCH 4/4][Image Creator]Implement multiple extra cache fields request support Ke Liping
2011-05-26  2:53   ` Ke Liping
2011-05-26  3:11 ` [PATCH 0/4][Image Creator]Add mulitple " Ke, Liping
  -- strict thread matches above, loose matches on Subject: below --
2011-05-31  8:15 Ke Liping
2011-06-03  1:06 Ke Liping
2011-06-07 21:47 ` Richard Purdie

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.