* [PATCH 0/1] master/dylan fix for bogus 'layer' arch in yocto-bsp list
@ 2013-06-21 22:23 Tom Zanussi
2013-06-21 22:23 ` [PATCH 1/1] yocto-bsp: filter out 'layer' from arch list Tom Zanussi
0 siblings, 1 reply; 2+ messages in thread
From: Tom Zanussi @ 2013-06-21 22:23 UTC (permalink / raw)
To: paul.eggleton, jessica.zhang, poky; +Cc: Tom Zanussi
This fixes YOCTO bug #4735 and can be pulled into both master and dylan.
The following changes since commit 011608a7b08c7fe5ad065da5179e1946ce250c57:
bitbake: data_smart: Fix bug with overrides and weak default values (2013-06-21 13:00:57 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib.git tzanussi/bug-4735-fix
http://git.yoctoproject.org/cgit.cgi//log/?h=tzanussi/bug-4735-fix
Tom Zanussi (1):
yocto-bsp: filter out 'layer' from arch list
scripts/lib/bsp/engine.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
1.7.11.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] yocto-bsp: filter out 'layer' from arch list
2013-06-21 22:23 [PATCH 0/1] master/dylan fix for bogus 'layer' arch in yocto-bsp list Tom Zanussi
@ 2013-06-21 22:23 ` Tom Zanussi
0 siblings, 0 replies; 2+ messages in thread
From: Tom Zanussi @ 2013-06-21 22:23 UTC (permalink / raw)
To: paul.eggleton, jessica.zhang, poky; +Cc: Tom Zanussi
The yocto-layer tool added a new directory alongside the actual
architectures and 'common', which is already screened out as not an
actual architecture when displaying the architecures.
The same needs to be done for 'layer' which isn't actually an
architecuture and likewise needs to be screened out.
Fixes [YOCTO #4735].
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
---
scripts/lib/bsp/engine.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/lib/bsp/engine.py b/scripts/lib/bsp/engine.py
index 36bd446..681720d 100644
--- a/scripts/lib/bsp/engine.py
+++ b/scripts/lib/bsp/engine.py
@@ -1674,7 +1674,7 @@ def yocto_bsp_list(args, scripts_path, properties_file):
arch_path = bsp_path + '/substrate/target/arch'
print "Architectures available:"
for arch in os.listdir(arch_path):
- if arch == "common":
+ if arch == "common" or arch == "layer":
continue
print " %s" % arch
return True
--
1.7.11.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-06-21 22:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-21 22:23 [PATCH 0/1] master/dylan fix for bogus 'layer' arch in yocto-bsp list Tom Zanussi
2013-06-21 22:23 ` [PATCH 1/1] yocto-bsp: filter out 'layer' from arch list Tom Zanussi
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.