diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-12-22 17:03:12 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-22 16:44:03 +0000 |
commit | 83707d1334fb094fd1877bcfd07a83866601048a (patch) | |
tree | 72428316f4f11ff96dcad569423892962addbee5 /scripts/devtool | |
parent | aedfc5a5db1c4b2b80a36147c9a13b31764d91dd (diff) | |
download | openembedded-core-contrib-83707d1334fb094fd1877bcfd07a83866601048a.tar.gz |
devtool: modify: default source tree path
As per the changes to "devtool add", make the source tree path optional
and use the default path if none is specified.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/devtool')
-rwxr-xr-x | scripts/devtool | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/devtool b/scripts/devtool index 93ba58e7a97..bda05e1c2fe 100755 --- a/scripts/devtool +++ b/scripts/devtool @@ -152,6 +152,10 @@ def _create_workspace(workspacedir, config, basepath): f.write('\nIf you no longer need to use devtool you can remove the path to this\n') f.write('workspace layer from your conf/bblayers.conf file (and then delete the\n') f.write('layer, if you wish).\n') + f.write('\nNote that by default, if devtool fetches and unpacks source code, it\n') + f.write('will place it in a subdirectory of a "sources" subdirectory of the\n') + f.write('layer. If you prefer it to be elsewhere you can specify the source\n') + f.write('tree path on the command line.\n') def _enable_workspace_layer(workspacedir, config, basepath): """Ensure the workspace layer is in bblayers.conf""" |