blob: ff297fe324ccfe0ca5f5887ea1e616af3490adfd [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001require core-image-sato-sdk.bb
Brad Bishopc342db32019-05-15 21:57:59 -04002require conf/distro/include/ptest-packagelists.inc
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05003
4DESCRIPTION += "Also includes ptest packages."
5
6IMAGE_FEATURES += "ptest-pkgs"
7
Brad Bishopc342db32019-05-15 21:57:59 -04008PROVIDES += "core-image-sato-ptest"
9
10# Also include ptests which may not otherwise be included in a sato image
11IMAGE_INSTALL += "${PTESTS_FAST} ${PTESTS_SLOW}"
12
Brad Bishop19323692019-04-05 15:28:33 -040013# This image is sufficiently large (~1.8GB) that we need to be careful that it fits in a live
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014# image (which has a 4GB limit), so nullify the overhead factor (1.3x out of the
Brad Bishop96ff1982019-08-19 13:50:42 -040015# box) and explicitly add just 1100MB.
Brad Bishop19323692019-04-05 15:28:33 -040016# strace-ptest in particular needs more than 500MB
Brad Bishopd7bf8c12018-02-25 22:55:05 -050017IMAGE_OVERHEAD_FACTOR = "1.0"
Brad Bishop96ff1982019-08-19 13:50:42 -040018IMAGE_ROOTFS_EXTRA_SPACE = "1124288"
Brad Bishop19323692019-04-05 15:28:33 -040019
20# ptests need more memory than standard to avoid the OOM killer
21QB_MEM = "-m 1024"