mirror of
https://git.yoctoproject.org/poky
synced 2026-09-15 06:49:33 +02:00
Add a test for a multiconfig build which mixes tiny and musl builds along with using the mcextend class to combine and package multiple images into another image. This gives the multiconfig a decent test in a scenario users may use. (From OE-Core rev: 0c7fa15a7350808242754944243f01155bc6784c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
1.1 KiB
BlitzBasic
29 lines
1.1 KiB
BlitzBasic
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
MCMACHINE_virtclass-mcextend-musl = "qemux86-64"
|
|
MCMACHINE_virtclass-mcextend-tiny = "qemux86"
|
|
MCIMGTYPE_virtclass-mcextend-musl = "ext4"
|
|
MCIMGTYPE_virtclass-mcextend-tiny = "cpio.gz"
|
|
|
|
MC_DEPLOY_DIR_IMAGE = "${TOPDIR}/tmp-mc-${MCNAME}/deploy/images/${MCMACHINE}"
|
|
|
|
do_install[mcdepends] += "multiconfig::${MCNAME}:core-image-minimal:do_image_complete multiconfig::${MCNAME}:virtual/kernel:do_deploy"
|
|
|
|
do_install () {
|
|
install -d ${D}/var/lib/machines/${MCNAME}
|
|
install ${MC_DEPLOY_DIR_IMAGE}/core-image-minimal-${MCMACHINE}.${MCIMGTYPE} ${D}/var/lib/machines/${MCNAME}/core-image-minimal.${MCIMGTYPE}
|
|
install ${MC_DEPLOY_DIR_IMAGE}/bzImage ${D}/var/lib/machines/${MCNAME}
|
|
}
|
|
|
|
python () {
|
|
mcname = d.getVar('MCNAME')
|
|
if not mcname:
|
|
raise bb.parse.SkipRecipe("Not a multiconfig target")
|
|
multiconfigs = d.getVar('BBMULTICONFIG') or ""
|
|
if mcname not in multiconfigs:
|
|
raise bb.parse.SkipRecipe("multiconfig target %s not enabled" % mcname)
|
|
}
|
|
|
|
BBCLASSEXTEND = "mcextend:tiny mcextend:musl"
|