mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
(From OE-Core rev: 6aacf7b2c571bf1004caaa9883e58c1f22e37fec) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
434 B
BlitzBasic
14 lines
434 B
BlitzBasic
#
|
|
# 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-sato/images/core-image-sato.bb
|
|
|
|
# Now add the multilib packages we want to install
|
|
IMAGE_INSTALL += "lib32-bash"
|