diff options
author | Maciej Borzecki <maciej.borzecki@open-rnd.pl> | 2016-02-03 14:33:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-08 10:54:56 +0000 |
commit | dfeda17ca1b117e5dfb0be9bd1cfc1d9332f9b18 (patch) | |
tree | cced5ccb6d358ca889024d4f0445d73be80344af /scripts/lib/bsp/engine.py | |
parent | d482d84998c70f6cf4269ad15d3e7ac6f3cb3a53 (diff) | |
download | poky-dfeda17ca1b117e5dfb0be9bd1cfc1d9332f9b18.tar.gz |
scripts/lib/bsp/engine: fix path separator
Make path to newly generated README file legitimate
(From meta-yocto rev: 32286bb798c2778457b5578b4b590629c96a0ee2)
Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/bsp/engine.py')
-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 d0d5d726aa..4cca7d6291 100644 --- a/scripts/lib/bsp/engine.py +++ b/scripts/lib/bsp/engine.py | |||
@@ -1598,7 +1598,7 @@ def yocto_layer_create(layer_name, scripts_path, layer_output_dir, codedump, pro | |||
1598 | yocto_common_create(layer_name, "layer", scripts_path, layer_output_dir, codedump, properties_file, properties, False) | 1598 | yocto_common_create(layer_name, "layer", scripts_path, layer_output_dir, codedump, properties_file, properties, False) |
1599 | 1599 | ||
1600 | print "\nNew layer created in %s.\n" % (layer_output_dir) | 1600 | print "\nNew layer created in %s.\n" % (layer_output_dir) |
1601 | print "Don't forget to add it to your BBLAYERS (for details see %s\README)." % (layer_output_dir) | 1601 | print "Don't forget to add it to your BBLAYERS (for details see %s/README)." % (layer_output_dir) |
1602 | 1602 | ||
1603 | 1603 | ||
1604 | def yocto_bsp_create(machine, arch, scripts_path, bsp_output_dir, codedump, properties_file, properties=None): | 1604 | def yocto_bsp_create(machine, arch, scripts_path, bsp_output_dir, codedump, properties_file, properties=None): |