Renamed sublayers back to layers

It was decided that 'sublayers' is to confusing, because this term is
not used in the bitbake/openembedded context.

Signed-off-by: Claudius Heine <ch@denx.de>
This commit is contained in:
Claudius Heine
2017-06-21 13:32:57 +02:00
committed by Daniel Wagner
parent 33a21c8d0d
commit c950de46f9
3 changed files with 12 additions and 11 deletions

View File

@@ -113,7 +113,7 @@ Currently there is supports for JSON and Yaml.
{ "url": "" },
{ "url": "https://git.yoctoproject.org/git/poky",
"refspec": "krogoth",
"sublayers": [ "meta", "meta-poky", "meta-yocto-bsp"]}
"layers": [ "meta", "meta-poky", "meta-yocto-bsp"]}
]
}
```
@@ -156,7 +156,7 @@ def get_repos(target):
repos.append(Repo(
url='https://git.yoctoproject.org/git/poky',
refspec='krogoth',
sublayers=['meta', 'meta-poky', 'meta-yocto-bsp'])))
layers=['meta', 'meta-poky', 'meta-yocto-bsp'])))
return repos
```