All of lore.kernel.org
 help / color / mirror / Atom feed
* [wic][PATCH] wic: look for wks files in <layer>/recipes-images
@ 2016-12-16 20:30 Ed Bartosh
  2016-12-19  3:15 ` Paul Eggleton
  0 siblings, 1 reply; 5+ messages in thread
From: Ed Bartosh @ 2016-12-16 20:30 UTC (permalink / raw)
  To: openembedded-core

Currently wic looks for wks files in
<layer dir>/scripts/lib/wic/canned-wks/ directories.
This path is too nested and doesn't look consistent with the
naming scheme of layer directories.

Added 'recipes-images' directory to the list of paths
to look for wks files.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
---
 scripts/lib/wic/engine.py | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/scripts/lib/wic/engine.py b/scripts/lib/wic/engine.py
index 5b10463..8353edb 100644
--- a/scripts/lib/wic/engine.py
+++ b/scripts/lib/wic/engine.py
@@ -52,6 +52,7 @@ def verify_build_env():
 
 CANNED_IMAGE_DIR = "lib/wic/canned-wks" # relative to scripts
 SCRIPTS_CANNED_IMAGE_DIR = "scripts/" + CANNED_IMAGE_DIR
+RECIPES_IMAGES_DIR = "recipes-images"
 
 def build_canned_image_list(path):
     layers_path = misc.get_bitbake_var("BBLAYERS")
@@ -59,8 +60,10 @@ def build_canned_image_list(path):
 
     if layers_path is not None:
         for layer_path in layers_path.split():
-            cpath = os.path.join(layer_path, SCRIPTS_CANNED_IMAGE_DIR)
-            canned_wks_layer_dirs.append(cpath)
+            for wks_path in (RECIPES_IMAGES_DIR, SCRIPTS_CANNED_IMAGE_DIR):
+                cpath = os.path.join(layer_path, wks_path)
+                if os.path.isdir(cpath):
+                    canned_wks_layer_dirs.append(cpath)
 
     cpath = os.path.join(path, CANNED_IMAGE_DIR)
     canned_wks_layer_dirs.append(cpath)
-- 
2.1.4



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

* Re: [wic][PATCH] wic: look for wks files in <layer>/recipes-images
  2016-12-16 20:30 [wic][PATCH] wic: look for wks files in <layer>/recipes-images Ed Bartosh
@ 2016-12-19  3:15 ` Paul Eggleton
  2016-12-19 12:41   ` [PATCH v2] wic: look for wks files in <layer>/wic Ed Bartosh
  0 siblings, 1 reply; 5+ messages in thread
From: Paul Eggleton @ 2016-12-19  3:15 UTC (permalink / raw)
  To: Ed Bartosh; +Cc: openembedded-core

Hi Ed,

On Fri, 16 Dec 2016 22:30:45 Ed Bartosh wrote:
> Currently wic looks for wks files in
> <layer dir>/scripts/lib/wic/canned-wks/ directories.
> This path is too nested and doesn't look consistent with the
> naming scheme of layer directories.
>
> Added 'recipes-images' directory to the list of paths
> to look for wks files.

I agree we ought to change this, but "recipes-images" isn't especially 
consistent with how paths are used in OE layers. Recipes are found using 
BBFILES, and at least in OE-Core its meta/recipes-*/*/*.bb - i.e. one layer 
down from recipes-images.

If I were to suggest an alternative it would be to just use a different name 
that doesn't imply connection with how images are found (e.g. "canned-wks" or 
"wic" or something like that).

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

* [PATCH v2] wic: look for wks files in <layer>/wic
  2016-12-19  3:15 ` Paul Eggleton
@ 2016-12-19 12:41   ` Ed Bartosh
  2016-12-19 23:31     ` Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: Ed Bartosh @ 2016-12-19 12:41 UTC (permalink / raw)
  To: openembedded-core; +Cc: Paul Eggleton

Currently wic looks for wks files in
<layer dir>/scripts/lib/wic/canned-wks/ directories.
This path is too nested and doesn't look consistent with the
naming scheme of layer directories.

Added <layer>/wic directory to the list of paths
to look for wks files.

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
---
 scripts/lib/wic/engine.py | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/scripts/lib/wic/engine.py b/scripts/lib/wic/engine.py
index 5b10463..2adef2f 100644
--- a/scripts/lib/wic/engine.py
+++ b/scripts/lib/wic/engine.py
@@ -52,6 +52,7 @@ def verify_build_env():
 
 CANNED_IMAGE_DIR = "lib/wic/canned-wks" # relative to scripts
 SCRIPTS_CANNED_IMAGE_DIR = "scripts/" + CANNED_IMAGE_DIR
+WIC_DIR = "wic"
 
 def build_canned_image_list(path):
     layers_path = misc.get_bitbake_var("BBLAYERS")
@@ -59,8 +60,10 @@ def build_canned_image_list(path):
 
     if layers_path is not None:
         for layer_path in layers_path.split():
-            cpath = os.path.join(layer_path, SCRIPTS_CANNED_IMAGE_DIR)
-            canned_wks_layer_dirs.append(cpath)
+            for wks_path in (WIC_DIR, SCRIPTS_CANNED_IMAGE_DIR):
+                cpath = os.path.join(layer_path, wks_path)
+                if os.path.isdir(cpath):
+                    canned_wks_layer_dirs.append(cpath)
 
     cpath = os.path.join(path, CANNED_IMAGE_DIR)
     canned_wks_layer_dirs.append(cpath)
-- 
2.1.4



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

* Re: [PATCH v2] wic: look for wks files in <layer>/wic
  2016-12-19 12:41   ` [PATCH v2] wic: look for wks files in <layer>/wic Ed Bartosh
@ 2016-12-19 23:31     ` Khem Raj
  2016-12-20 10:22       ` Ed Bartosh
  0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2016-12-19 23:31 UTC (permalink / raw)
  To: Ed Bartosh; +Cc: Paul Eggleton, Patches and discussions about the oe-core layer

On Mon, Dec 19, 2016 at 4:41 AM, Ed Bartosh <ed.bartosh@linux.intel.com> wrote:
> Currently wic looks for wks files in
> <layer dir>/scripts/lib/wic/canned-wks/ directories.
> This path is too nested and doesn't look consistent with the
> naming scheme of layer directories.
>
> Added <layer>/wic directory to the list of paths
> to look for wks files.

Does it also affect documentation ?

>
> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
> ---
>  scripts/lib/wic/engine.py | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/lib/wic/engine.py b/scripts/lib/wic/engine.py
> index 5b10463..2adef2f 100644
> --- a/scripts/lib/wic/engine.py
> +++ b/scripts/lib/wic/engine.py
> @@ -52,6 +52,7 @@ def verify_build_env():
>
>  CANNED_IMAGE_DIR = "lib/wic/canned-wks" # relative to scripts
>  SCRIPTS_CANNED_IMAGE_DIR = "scripts/" + CANNED_IMAGE_DIR
> +WIC_DIR = "wic"
>
>  def build_canned_image_list(path):
>      layers_path = misc.get_bitbake_var("BBLAYERS")
> @@ -59,8 +60,10 @@ def build_canned_image_list(path):
>
>      if layers_path is not None:
>          for layer_path in layers_path.split():
> -            cpath = os.path.join(layer_path, SCRIPTS_CANNED_IMAGE_DIR)
> -            canned_wks_layer_dirs.append(cpath)
> +            for wks_path in (WIC_DIR, SCRIPTS_CANNED_IMAGE_DIR):
> +                cpath = os.path.join(layer_path, wks_path)
> +                if os.path.isdir(cpath):
> +                    canned_wks_layer_dirs.append(cpath)
>
>      cpath = os.path.join(path, CANNED_IMAGE_DIR)
>      canned_wks_layer_dirs.append(cpath)
> --
> 2.1.4
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH v2] wic: look for wks files in <layer>/wic
  2016-12-19 23:31     ` Khem Raj
@ 2016-12-20 10:22       ` Ed Bartosh
  0 siblings, 0 replies; 5+ messages in thread
From: Ed Bartosh @ 2016-12-20 10:22 UTC (permalink / raw)
  To: Khem Raj; +Cc: Paul Eggleton, Patches and discussions about the oe-core layer

On Mon, Dec 19, 2016 at 03:31:29PM -0800, Khem Raj wrote:
> On Mon, Dec 19, 2016 at 4:41 AM, Ed Bartosh <ed.bartosh@linux.intel.com> wrote:
> > Currently wic looks for wks files in
> > <layer dir>/scripts/lib/wic/canned-wks/ directories.
> > This path is too nested and doesn't look consistent with the
> > naming scheme of layer directories.
> >
> > Added <layer>/wic directory to the list of paths
> > to look for wks files.
> 
> Does it also affect documentation ?
> 

Yes, in a way. There is only indirect mentioning of
scripts/lib/wic/canned-wks/ in the documentation. I'm going to add new
path there or even directly mention both paths in dev manual.

> >
> > Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
> > ---
> >  scripts/lib/wic/engine.py | 7 +++++--
> >  1 file changed, 5 insertions(+), 2 deletions(-)
> >
> > diff --git a/scripts/lib/wic/engine.py b/scripts/lib/wic/engine.py
> > index 5b10463..2adef2f 100644
> > --- a/scripts/lib/wic/engine.py
> > +++ b/scripts/lib/wic/engine.py
> > @@ -52,6 +52,7 @@ def verify_build_env():
> >
> >  CANNED_IMAGE_DIR = "lib/wic/canned-wks" # relative to scripts
> >  SCRIPTS_CANNED_IMAGE_DIR = "scripts/" + CANNED_IMAGE_DIR
> > +WIC_DIR = "wic"
> >
> >  def build_canned_image_list(path):
> >      layers_path = misc.get_bitbake_var("BBLAYERS")
> > @@ -59,8 +60,10 @@ def build_canned_image_list(path):
> >
> >      if layers_path is not None:
> >          for layer_path in layers_path.split():
> > -            cpath = os.path.join(layer_path, SCRIPTS_CANNED_IMAGE_DIR)
> > -            canned_wks_layer_dirs.append(cpath)
> > +            for wks_path in (WIC_DIR, SCRIPTS_CANNED_IMAGE_DIR):
> > +                cpath = os.path.join(layer_path, wks_path)
> > +                if os.path.isdir(cpath):
> > +                    canned_wks_layer_dirs.append(cpath)
> >
> >      cpath = os.path.join(path, CANNED_IMAGE_DIR)
> >      canned_wks_layer_dirs.append(cpath)
> > --
> > 2.1.4
> >
> > --
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
--
Regards,
Ed


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

end of thread, other threads:[~2016-12-20 10:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-16 20:30 [wic][PATCH] wic: look for wks files in <layer>/recipes-images Ed Bartosh
2016-12-19  3:15 ` Paul Eggleton
2016-12-19 12:41   ` [PATCH v2] wic: look for wks files in <layer>/wic Ed Bartosh
2016-12-19 23:31     ` Khem Raj
2016-12-20 10:22       ` Ed Bartosh

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.