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
13 lines
448 B
BlitzBasic
13 lines
448 B
BlitzBasic
SUMMARY = "An example of a multilib image"
|
|
#
|
|
# This example includes a lib32 version of bash into an otherwise standard
|
|
# sato image. It assumes a "lib32" multilib has been enabled in the user's
|
|
# configuration (see the example conf files for examples of this.)
|
|
#
|
|
|
|
# First include a base image to base things off
|
|
require recipes-graphics/images/core-image-weston.bb
|
|
|
|
# Now add the multilib packages we want to install
|
|
IMAGE_INSTALL += "lib32-bash"
|