diff options
Diffstat (limited to 'meta/lib/bblayers/templates/example.bb')
-rw-r--r-- | meta/lib/bblayers/templates/example.bb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta/lib/bblayers/templates/example.bb b/meta/lib/bblayers/templates/example.bb new file mode 100644 index 0000000000..c4b873d593 --- /dev/null +++ b/meta/lib/bblayers/templates/example.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | SUMMARY = "bitbake-layers recipe" | ||
2 | DESCRIPTION = "Recipe created by bitbake-layers" | ||
3 | LICENSE = "MIT" | ||
4 | |||
5 | python do_build() { | ||
6 | bb.plain("***********************************************"); | ||
7 | bb.plain("* *"); | ||
8 | bb.plain("* Example recipe created by bitbake-layers *"); | ||
9 | bb.plain("* *"); | ||
10 | bb.plain("***********************************************"); | ||
11 | } | ||