diff options
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/bsp/engine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/bsp/engine.py b/scripts/lib/bsp/engine.py index 36bd446e2b..681720d20a 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): | |||
1674 | arch_path = bsp_path + '/substrate/target/arch' | 1674 | arch_path = bsp_path + '/substrate/target/arch' |
1675 | print "Architectures available:" | 1675 | print "Architectures available:" |
1676 | for arch in os.listdir(arch_path): | 1676 | for arch in os.listdir(arch_path): |
1677 | if arch == "common": | 1677 | if arch == "common" or arch == "layer": |
1678 | continue | 1678 | continue |
1679 | print " %s" % arch | 1679 | print " %s" % arch |
1680 | return True | 1680 | return True |