Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
14 lines
496 B
BlitzBasic
14 lines
496 B
BlitzBasic
SUMMARY = "bitbake-layers recipe"
|
|
DESCRIPTION = "Recipe created by bitbake-layers"
|
|
LICENSE = "MIT"
|
|
|
|
python do_display_banner() {
|
|
bb.plain("***********************************************");
|
|
bb.plain("* *");
|
|
bb.plain("* Example recipe created by bitbake-layers *");
|
|
bb.plain("* *");
|
|
bb.plain("***********************************************");
|
|
}
|
|
|
|
addtask display_banner before do_build
|